Get class methods using reflection
Solution 1:
MethodInfo[] methodInfos = Type.GetType(selectedObjcClass)
.GetMethods(BindingFlags.Public | BindingFlags.Instance);
Solution 2:
// get all public static methods of given type(public would suffer in your case, only to show how you could other BindingFlags)
MethodInfo[] methodInfos = _type.GetMethods(BindingFlags.Public | BindingFlags.Static);
Type.GetMethods Method (BindingFlags)
Solution 3:
Type.GetMethods Method