oldest() public méthode

public oldest ( string data ) : string
data string
Résultat string
Exemple #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();
 }
Exemple #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();
        }