getTask() 공개 메소드

public getTask ( string list, int n ) : string
list string
n int
리턴 string
예제 #1
0
 static void Main(string[] args)
 {
     BusinessTasks x = new BusinessTasks();
     string[] a = { "a", "b", "c", "d", "e" };
     Console.WriteLine(x.getTask(a, 3));
     Console.ReadLine();
 }
예제 #2
0
        static void Main(string[] args)
        {
            BusinessTasks x = new BusinessTasks();

            string[] a = { "a", "b", "c", "d", "e" };
            Console.WriteLine(x.getTask(a, 3));
            Console.ReadLine();
        }