We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91b9946 commit a269a5aCopy full SHA for a269a5a
core/encoding/cyrillic-to-latin/cs/ConsoleModule.cs
@@ -86,8 +86,14 @@ static void Main()
86
87
private static void ShowSyntax()
88
{
89
- Console.WriteLine("\nSyntax: CyrillicToRoman <source> <destination>");
90
- Console.WriteLine(" where <source> = source filename");
91
- Console.WriteLine(" <destination> = destination filename\n");
+ StringBuilder sb = new StringBuilder();
+
+ sb.AppendLine();
92
+ sb.AppendLine("Syntax: CyrillicToRoman <source> <destination>");
93
+ sb.AppendLine(" where <source> = source filename");
94
+ sb.AppendLine(" <destination> = destination filename");
95
96
97
+ Console.WriteLine(sb.ToString());
98
}
99
0 commit comments