Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
using System.Text;
using System.Diagnostics;



namespace ConsoleApplication1
{

Expand Down Expand Up @@ -100,7 +98,6 @@ static void Main()
Output:
-1
*/

//</snippet6>

// !
Expand Down Expand Up @@ -163,7 +160,6 @@ static void Main()
0.6
-1.2
*/

//</snippet9>

// |=
Expand All @@ -185,7 +181,6 @@ static void Main()
0x0000000e
True
*/

//</snippet10>

//<snippet11>
Expand Down Expand Up @@ -327,7 +322,6 @@ void M()
System.Console.WriteLine("hello");
//</snippet20>
}

}

//<snippet21>
Expand Down Expand Up @@ -552,7 +546,6 @@ static void Main()
Bitwise result: 1010
Bitwise result: 11000111
*/

//</snippet30>


Expand Down Expand Up @@ -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
Expand Down