C Sharp (C#) - Exception Handling
What will be the output of the following C# code?
try {
throw new Exception("Error");
} catch (Exception ex) {
Console.WriteLine(ex.StackTrace == null ? "No stack trace" : "Has stack trace");
throw;
}