{I+=codeWee;} |
private delegate string DemoDelegate(); private DemoDelegate [] Delegate_Function ; public MainForm() { Delegate_Function = new DemoDelegate [] {new DemoDelegate(Func_A), new DemoDelegate(Func_B)} ; } string Func_A() { return "This is A" ; } string Func_B() { return "This is B" ; }