You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
467 B
C#

5 years ago
/*
* C# Program to Print Hello World Without using WriteLine
*/
using System;
class Program
{
static void Main(string[] args)
{
if (System.Console.OpenStandardOutput().BeginWrite(new byte[] { 072, 101, 108, 108, 111, 032, 087, 111, 114, 108, 100, 0 },0, 12, null, null).AsyncWaitHandle.WaitOne())
{
}
if (System.Console.ReadKey().Modifiers == 0)
{
}
}
}
/*
Hello World