PartAngleDisplay.ToolbarTypes.getMethod C# (CSharp) 메소드

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

static private getMethod ( Type type, string name ) : MethodInfo
type System.Type
name string
리턴 System.Reflection.MethodInfo
        internal static MethodInfo getMethod(Type type, string name)
        {
            return type.GetMethod(name, BindingFlags.Public | BindingFlags.Instance);
        }