ForLoop() public method

public ForLoop ( int start, int stop, int stepLength, ForLoopBody loopBody, bool close ) : void
start int
stop int
stepLength int
loopBody ForLoopBody
close bool
return void
コード例 #1
0
		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);
		}
コード例 #2
0
        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);
        }