longestArrow() public method

public longestArrow ( string s ) : int
s string
return int
Beispiel #1
0
        static void Main(string[] args)
        {
            Arrows a = new Arrows();

            Console.WriteLine(a.longestArrow("<--->--==>"));
            Console.ReadLine();
        }
Beispiel #2
0
 static void Main(string[] args)
 {
     Arrows a = new Arrows();
     Console.WriteLine(a.longestArrow("<--->--==>"));
     Console.ReadLine();
 }