using System.Diagnostics;
static class ExtensionMethods
public static string LimitedStackTrace(this Exception input, int layers)
public static void Needle()
throw new Exception("ZOMG WHERE DID I GO WRONG???!");
private static void Test()
public static void Main()
catch(System.Exception e)
Console.WriteLine("Error '{0}' at {1}", e.Message, e.LimitedStackTrace(3));