How can I get all the public methods of class using reflection when class name is passed as a string as shown in the below method. ?
private MethodInfo[] GetObjectMethods(string selectedObjClass)
{
MethodInfo[] methodInfos;
Assembly assembly = Assembly.GetAssembly(typeof(sampleAdapater));
Type _type = assembly.GetType("SampleSolution.Data.MyData." + selectedObjClass);
///get all the methods for the classname passed as string
return methodInfos;
}
Please help. Thanks
Type.GetMethods Method (BindingFlags)
Type.GetMethods Method