oldest() public method

public oldest ( string data ) : string
data string
return string
示例#1
0
 static void Main(string[] args)
 {
     OldestOne x = new OldestOne();
     string[] a = { "DOUG JONES 22 213 ALDEN LANE", "   BOB     A SMITH  102 CLARK ST" };
     Console.WriteLine(x.oldest(a));
     Console.ReadLine();
 }
示例#2
0
        static void Main(string[] args)
        {
            OldestOne x = new OldestOne();

            string[] a = { "DOUG JONES 22 213 ALDEN LANE", "   BOB     A SMITH  102 CLARK ST" };
            Console.WriteLine(x.oldest(a));
            Console.ReadLine();
        }