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 a2056cb commit c0cd9dbCopy full SHA for c0cd9db
snippets/csharp/concepts/structs/literals.cs
@@ -8,10 +8,10 @@
8
9
var x = 123_456;
10
string s2 = "I can use an underscore as a digit separator: " + x;
11
-// Outputs: "I can use an underscore as a digit separator:
+// Outputs: "I can use an underscore as a digit separator: 123456"
12
Console.WriteLine(s2);
13
14
var b = 0b1010_1011_1100_1110_1111;
15
string s3 = "I can specify bit patterns: " + b.ToString();
16
-// Outputs: "I can specify bit patterns: 703727
+// Outputs: "I can specify bit patterns: 703727"
17
Console.WriteLine(s3);
0 commit comments