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);
        }