I have problems with decompiling a console application which is using .net 4.6 and async/await. My ILSpy version is 2.4.0.1963.
I have a simple class
public class Example
{
public async Task ShowStateMachine()
{
FirstSync();
await Task.Delay(500);
SecondSync();
}
public void FirstSync()
{
Console.WriteLine("First");
}
public void SecondSync()
{
Console.WriteLine("Second");
}
}
But when I open ILSPy in C#-mode, I can't go to the statemachine

But it exists in IL-mode

I have problems with decompiling a console application which is using .net 4.6 and async/await. My ILSpy version is 2.4.0.1963.
I have a simple class
But when I open ILSPy in C#-mode, I can't go to the statemachine
But it exists in IL-mode