|
|
От: |
FLUID
|
http://yuriy-okhmat.blogspot.com/ |
| Дата: | 23.03.09 15:13 | ||
| Оценка: | |||
class Program
{
static void Main(string[] args)
{
Demo d = new Demo();
d.GetType().GetMethod("Do").Invoke(d, null);
}
}
public class Demo
{
public void Do()
{
Console.WriteLine("Hello, World");
}
}