Skip to content

Commit 43b4f15

Browse files
authored
Update 6-solution.md
1 parent ba6bcc6 commit 43b4f15

File tree

1 file changed

+2
-2
lines changed
  • learn-pr/wwl-language/csharp-basic-formatting/includes

1 file changed

+2
-2
lines changed

learn-pr/wwl-language/csharp-basic-formatting/includes/6-solution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ The following code is one possible solution for the challenge from the previous
66
```csharp
77
string projectName = "ACME";
88
string englishLocation = $@"c:\Exercise\{projectName}\data.txt";
9-
Console.WriteLine($"View English output:\n\t\t{englishLocation}\n");
9+
Console.WriteLine($"View English output:\n\t{englishLocation}\n");
1010

1111
string russianMessage = "\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0443\u0441\u0441\u043a\u0438\u0439 \u0432\u044b\u0432\u043e\u0434";
1212
string russianLocation = $@"c:\Exercise\{projectName}\ru-RU\data.txt";
13-
Console.WriteLine($"{russianMessage}:\n\t\t{russianLocation}\n");
13+
Console.WriteLine($"{russianMessage}:\n\t{russianLocation}\n");
1414
```
1515

1616
This code represents "*one possible solution*". You may have some variations in naming variables or in the character escape sequences you used. You might use `Console.Write` instead of `Console.WriteLine`, or you might combine the values instead of using several variables.

0 commit comments

Comments
 (0)