Mam kilka klas statycznych w przestrzeni nazw, mySolution.Macros
takich jak
static class Indent{
public static void Run(){
// implementation
}
// other helper methods
}
Więc moje pytanie brzmi: jak będzie można nazwać te metody za pomocą refleksji?
Jeśli metody NIE mają być statyczne, mógłbym zrobić coś takiego:
var macroClasses = Assembly.GetExecutingAssembly().GetTypes().Where( x => x.Namespace.ToUpper().Contains("MACRO") );
foreach (var tempClass in macroClasses)
{
var curInsance = Activator.CreateInstance(tempClass);
// I know have an instance of a macro and will be able to run it
// using reflection I will be able to run the method as:
curInsance.GetType().GetMethod("Run").Invoke(curInsance, null);
}
Chciałbym, aby moje zajęcia były statyczne. Jak będę mógł zrobić coś podobnego za pomocą metod statycznych?
Krótko mówiąc, chciałbym wywołać wszystkie metody Run ze wszystkich klas statycznych w przestrzeni nazw mySolution.Macros.
GetMethod
.