System.TypeExtensionMethods.GetFields C# (CSharp) 메소드

GetFields() 공개 정적인 메소드

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

        }
#endif