getTask() public method

public getTask ( string list, int n ) : string
list string
n int
return string
コード例 #1
0
ファイル: Program.cs プロジェクト: Oscarbralo/TopBlogCoder
 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();
        }