getOutput() public method

public getOutput ( string threads, string slices ) : string
threads string
slices string
return string
Ejemplo n.º 1
0
 static void Main(string[] args)
 {
     PrintScheduler x = new PrintScheduler();
     string[] a = { "ABCDE" };
     string[] b = { "0 20", "0 21" };
     Console.WriteLine(x.getOutput(a, b));
     Console.ReadLine();
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            PrintScheduler x = new PrintScheduler();

            string[] a = { "ABCDE" };
            string[] b = { "0 20", "0 21" };
            Console.WriteLine(x.getOutput(a, b));
            Console.ReadLine();
        }