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

GetProperties() 공개 정적인 메소드

public static GetProperties ( this type ) : IEnumerable
type this
리턴 IEnumerable
        public static IEnumerable<PropertyInfo> GetProperties(this Type type)
        {
            return type.GetRuntimeProperties();
        }
        public static FieldInfo GetField(this Type type, string name)