We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc377a commit a3faa3dCopy full SHA for a3faa3d
src/Chapter01.Tests/Listing01.21.Tests.cs
@@ -11,7 +11,7 @@ public void Main_InputInigoMontoya_WriteLastFirst()
11
@"Hey you!
12
Enter your first name: <<Inigo
13
>>Enter your last name: <<Montoya
14
->>Your full name is Montoya, Inigo.";
+>>Your full name is Inigo Montoya.";
15
16
IntelliTect.TestTools.Console.ConsoleAssert.Expect(
17
expected, CommentSamples.Main);
src/Chapter01/Listing01.21.CommentingYourCode.cs
@@ -19,7 +19,7 @@ public static void Main()
19
/* Display a greeting to the console
20
using composite formatting. */
21
22
- Console.WriteLine("Your full name is {1}, {0}.",
+ Console.WriteLine("Your full name is {0} {1}.",
23
firstName, lastName);
24
// This is the end
25
// of the program listing
0 commit comments