System.TypeExtensionMethods.GetField C# (CSharp) Method

GetField() public static method

public static GetField ( this type, string name ) : FieldInfo
type this
name string
return System.Reflection.FieldInfo
        public static FieldInfo GetField(this Type type, string name)
        {
            return type.GetRuntimeField(name);
        }
        public static IEnumerable<FieldInfo> GetFields(this Type type)