summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs')
-rw-r--r--src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs23
1 files changed, 8 insertions, 15 deletions
diff --git a/src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs b/src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs
index ce2630a908..49819a942f 100644
--- a/src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs
+++ b/src/mscorlib/src/System/Reflection/IntrospectionExtensions.cs
@@ -8,28 +8,21 @@
**
**
**
-** Purpose: go from type to type info
+** Purpose: Get the underlying TypeInfo from a Type
**
**
=============================================================================*/
-
namespace System.Reflection
{
- using System.Reflection;
-
public static class IntrospectionExtensions
{
- public static TypeInfo GetTypeInfo(this Type type){
- if(type == null){
- throw new ArgumentNullException("type");
- }
+ public static TypeInfo GetTypeInfo(this Type type)
+ {
+ if (type == null)
+ throw new ArgumentNullException(nameof(type));
+
var rcType=(IReflectableType)type;
- if(rcType==null){
- return null;
- }else{
- return rcType.GetTypeInfo();
- }
- }
+ return rcType.GetTypeInfo();
+ }
}
}
-