我希望能够得到一个表单中所有方法的名称列表(类似于按Alt+M得到的列表)。
yeotifhr1#
我找到了只获取我创建的方法的名称的方法。
Type methodInfoType = (typeof(Form_CreateNodes)); // Get the public methods. MethodInfo[] arrayOfPublicMethodsNames = methodInfoType.GetMethods( BindingFlags.Public | BindingFlags.Instance | BindingFlags.DeclaredOnly); // Get the nonpublic methods. MethodInfo[] arrayOfNonpublicMethodsNames = methodInfoType.GetMethods( BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.DeclaredOnly);
1条答案
按热度按时间yeotifhr1#
我找到了只获取我创建的方法的名称的方法。