Example #1
0
 void ExecuteProgram(string one, string two, onChange X)
 {
     X(one, two);
 }
Example #2
0
        void test()
        {
            onChange x = new onChange(testMe1);

            ExecuteProgram("text", "test", x);
        }