Initialize() private method

private Initialize ( ) : void
return void
Ejemplo n.º 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);
		}
        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);
        }