System.TypeExtensionMethods.GetFields C# (CSharp) Method

GetFields() public static method

public static GetFields ( this type ) : IEnumerable
type this
return IEnumerable
        public static IEnumerable<FieldInfo> GetFields(this Type type)
        {
            return type.GetRuntimeFields();

        }
#endif