Beispiel #1
0
 static void Main()
 {
     Console.WriteLine("Введите строку.");
     var str = new Str(Console.ReadLine());
     Console.WriteLine("Перевёрнутая строка: {0}",str>>0);
     Console.WriteLine("Минимальное слово в строке: {0}", ++str);
     Console.ReadKey();
 }
Beispiel #2
0
 public Str(Str str)
 {
     Value = str.Value;
 }