Created
October 22, 2014 15:27
-
-
Save posaunehm/36ef1783d0a36a9e0fc9 to your computer and use it in GitHub Desktop.
セミコロンレスC# ?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace ConsoleApplication1 | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
if ( | |
System.Console.OpenStandardOutput() | |
.WriteAsync(System.Text.Encoding.Default.GetBytes("Hello Semicolonless World !!"), 0, System.Text.Encoding.Default.GetBytes("Hello Semicolonless World !!").Length) == null) | |
{ } | |
if (System.Console.ReadLine() == null) { } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment