Skip to content

Instantly share code, notes, and snippets.

@discostu105
Last active September 21, 2017 14:51
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 discostu105/18e8cea5f23af72858d6a08027f617ea to your computer and use it in GitHub Desktop.
Save discostu105/18e8cea5f23af72858d6a08027f617ea to your computer and use it in GitHub Desktop.
Weird try.dot.net behavior
using System;
public class Program
{
public static void Main(params object[] args)
{
Console.WriteLine("Hello Wau!");
throw new Exception("wuhuu");
Console.Write("asdf");
Console.Error.Write("Err");
}
}
Program.Main();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment