Answers for "reflection static method c#"

C#
0

reflection static method c#

foreach (var tempClass in macroClasses)
{
   // using reflection I will be able to run the method as:
   tempClass.GetMethod("Run").Invoke(null, null);
}
Posted by: Guest on June-03-2021

Code answers related to "reflection static method c#"

C# Answers by Framework

Browse Popular Code Answers by Language