public static void For( int start, int stop, int stepLength, ForLoopBody loopBody, bool close ) { // get instance of parallel computation manager Parallel instance = new Parallel (); instance.Initialize (); instance.ForLoop (start,stop,stepLength,loopBody, close); }