getOutput() 공개 메소드

public getOutput ( string threads, string slices ) : string
threads string
slices string
리턴 string
예제 #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();
 }
예제 #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();
        }