// Allow easy reference to classes in the System namespace using System; using System.Collections; // This is the test class class testObject { public virtual int dothis(int iter) { return iter; } } // This "class" exists only to house the application's entry-point function class MainApp { public delegate void test_function(int INDEX); // loop_test public static void loop_test(int INDEX) { for(int x=0;x