notes.ToolbarTypes.getStaticProperty C# (CSharp) 메소드

getStaticProperty() 정적인 개인적인 메소드

static private getStaticProperty ( Type type, string name ) : PropertyInfo
type System.Type
name string
리턴 System.Reflection.PropertyInfo
        internal static PropertyInfo getStaticProperty(Type type, string name)
        {
            return type.GetProperty(name, BindingFlags.Public | BindingFlags.Static);
        }