Had a quick question.. Googled but nothing worthwhile found..
I have a simple type like shown below.
public class DummyClass
{
public string[] Greetings()
{
return new string[] { "Welcome", "Hello" };
}
}
How can I invoke the "Greetings" method via reflection? Note the method returns array of strings.