getTask() public method

public getTask ( string list, int n ) : string
list string
n int
return string
Ejemplo n.º 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();
 }
Ejemplo n.º 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();
        }