Skip to content

Instantly share code, notes, and snippets.

@posaunehm
Created October 22, 2014 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save posaunehm/36ef1783d0a36a9e0fc9 to your computer and use it in GitHub Desktop.
Save posaunehm/36ef1783d0a36a9e0fc9 to your computer and use it in GitHub Desktop.
セミコロンレスC# ?
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