Exemplo n.º 1
0
 private void LoadClassMethods(Type type)
 {
     EditorClass editorClass = new EditorClass();
     editorClass.Name = type.FullName;
     foreach (MethodInfo method in type.GetMethods()) {
         if (method.IsPublic && !method.Name.StartsWith("add_") && !method.Name.StartsWith("remove_")) {
             string methodName = method.Name.TrimStart("get_".ToCharArray()).TrimStart("set_".ToCharArray());
             EditorMethod editorMethod;
             int slot = editorClass.FindMethodByName(methodName);
             if (slot > -1) {
                 editorMethod = editorClass.Methods[slot];
             } else {
                 editorMethod = new EditorMethod();
                 editorMethod.Name = methodName;
             }
             editorMethod.Static = method.IsStatic;
             if (slot == -1) {
                 if (method.Name.StartsWith("get_")) {
                     editorMethod.Type = "[prop-get]";
                 } else if (method.Name.StartsWith("set_")) {
                     editorMethod.Type = "[prop-set]";
                 }
             } else {
                 if (method.Name.StartsWith("get_")) {
                     if (editorMethod.Type == "[prop-get]") {
                         editorMethod.Type = "[prop-get]";
                     } else if (editorMethod.Type == "[prop-set]") {
                         editorMethod.Type = "[prop-get/set]";
                     }
                 } else if (method.Name.StartsWith("set_")) {
                     if (editorMethod.Type == "[prop-set]") {
                         editorMethod.Type = "[prop-set]";
                     } else if (editorMethod.Type == "[prop-get]") {
                         editorMethod.Type = "[prop-get/set]";
                     }
                 }
             }
             if (!string.IsNullOrEmpty(editorMethod.Type) && editorMethod.Type.StartsWith("[prop")) {
                 if (editorMethod.Params.Count == 0) {
                     ParamSet param = new ParamSet();
                     param.ParamString = "No parameters";
                     editorMethod.Params.Add(param);
                 }
             } else {
                 LoadMethodParameters(method, editorMethod);
             }
             if (slot == -1) {
                 editorClass.Methods.Add(editorMethod);
             }
         }
     }
     editorClass.Methods.Sort(delegate(EditorMethod m1, EditorMethod m2) { return m1.Name.CompareTo(m2.Name); });
     classes.Add(editorClass);
 }
Exemplo n.º 2
0
 private void LoadMethodParameters(MethodInfo method, EditorMethod editorMethod)
 {
     ParameterInfo[] Myarray = method.GetParameters();
     ParamSet param = new ParamSet();
     param.Parameters = Myarray;
     if (Myarray.Length > 0) {
         param.ParamString = "0: " + Myarray[0].Name + " (" + Myarray[0].ParameterType.ToString() + ")";
         for (int i = 1; i <= Myarray.Length - 1; i++) {
             param.ParamString = param.ParamString + ", " + Myarray[i].Position.ToString() + ": " + Myarray[i].Name + " (" + Myarray[i].ParameterType.ToString() + ")";
         }
     } else {
         param.ParamString = "No parameters";
     }
     if (method.ReturnType.ToString() != "System.Void") {
         param.ReturnVal = "Returns: " + method.ReturnType.ToString();
     }
     editorMethod.Params.Add(param);
 }