From 20bd9d69d88207c22ee94139ba9c4e5c5041c173 Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Tue, 15 Jan 2019 00:13:58 -0800 Subject: [PATCH] port changes --- .../csrefOperators/CS/csrefOperators.cs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) 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