System.Reflection.RuntimeReflectionExtensions.GetRuntimeField C# (CSharp) Method

GetRuntimeField() public static method

public static GetRuntimeField ( this type, string name ) : FieldInfo
type this
name string
return FieldInfo
		public static FieldInfo GetRuntimeField (this Type type, string name)
		{
			if (type == null)
				throw new ArgumentNullException ("type");

			return type.GetField (name);
		}