Source code:
public void UsingTryCatch(int parameter)
{
try
{
Console.WriteLine(parameter);
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
Expected IL
.locals init (class [System.Runtime]System.Exception V_0)
Actual IL
.locals init([System.Runtime]System.Exception V_0)
Source code:
Expected IL
Actual IL