diff --git a/snippets/csharp/VS_Snippets_VBCSharp/csrefOperators/CS/csrefOperators.cs b/snippets/csharp/VS_Snippets_VBCSharp/csrefOperators/CS/csrefOperators.cs index 125c4de76c4..1c8097321ad 100644 --- a/snippets/csharp/VS_Snippets_VBCSharp/csrefOperators/CS/csrefOperators.cs +++ b/snippets/csharp/VS_Snippets_VBCSharp/csrefOperators/CS/csrefOperators.cs @@ -5,8 +5,6 @@ using System.Text; using System.Diagnostics; - - namespace ConsoleApplication1 { @@ -100,7 +98,6 @@ static void Main() Output: -1 */ - // // ! @@ -163,7 +160,6 @@ static void Main() 0.6 -1.2 */ - // // |= @@ -185,7 +181,6 @@ static void Main() 0x0000000e True */ - // // @@ -327,7 +322,6 @@ void M() System.Console.WriteLine("hello"); // } - } // @@ -552,7 +546,6 @@ static void Main() Bitwise result: 1010 Bitwise result: 11000111 */ - // @@ -1096,7 +1089,7 @@ static void Main() int? x = null; // Set y to the value of x if x is NOT null; otherwise, - // if x = null, set y to -1. + // if x == null, set y to -1. int y = x ?? -1; // Assign i to return value of the method if the method's result