System.Reflection.MonoField.GetValue C# (CSharp) 메소드

GetValue() 공개 메소드

public GetValue ( object obj ) : object
obj object
리턴 object
		public override object GetValue (object obj)
		{
			if (!IsStatic && obj == null)
				throw new TargetException ("Non-static field requires a target");
			if (!IsLiteral)
				CheckGeneric ();
			return GetValueInternal (obj);
		}