System.Reflection.ReflectionContext.GetTypeForObject C# (CSharp) 메소드

GetTypeForObject() 공개 메소드

public GetTypeForObject ( object value ) : TypeInfo
value object
리턴 TypeInfo
		public virtual TypeInfo GetTypeForObject (object value)
		{
			if (value == null)
				throw new ArgumentNullException ("value");
			
			var rt = value as IReflectableType;
			if (rt != null)
				return rt.GetTypeInfo ();
			
			throw new NotImplementedException ();
		}