Skip to content

Instantly share code, notes, and snippets.

@daanl
Created August 13, 2013 17:53
Show Gist options
  • Save daanl/6223795 to your computer and use it in GitHub Desktop.
Save daanl/6223795 to your computer and use it in GitHub Desktop.
await Console.WriteLineAsync("message: {0}", "hi");
public static class Console
{
public static async Task WriteLineAsync(string message, params object[] formatArguments)
{
await Task.Run(() => System.Console.WriteLine(message, formatArguments));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment