System.Reflection.MonoField.GetValue C# (CSharp) Method

GetValue() public method

public GetValue ( object obj ) : object
obj object
return 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);
		}