-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Async await on dynamic expression is not detected. #1388
Labels
Comments
The cause seems to be |
siegfriedpammer
added a commit
that referenced
this issue
Feb 15, 2019
siegfriedpammer
changed the title
v.4.rc1: ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index
Async await on dynamic expression is not detected.
Feb 15, 2019
A simple test case: class Program
{
dynamic GetDynamic()
{
return null;
}
public async Task<dynamic> TestDynamicWithAsync()
{
dynamic value = await GetDynamic();
value.UseMe();
return value;
}
} |
siegfriedpammer
added
Async
C#
Decompiler
The decompiler engine itself
Enhancement
Areas for improvement
labels
Jul 14, 2019
ElektroKill
pushed a commit
to dnSpyEx/ILSpy
that referenced
this issue
Jul 14, 2021
…iler.AnalyzeAwaitBlock.
siegfriedpammer
added a commit
that referenced
this issue
Jun 27, 2022
Fix #1928: dynamic JObject() not decompile correctly
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
ILSpy version 4.0.0.4518-rc1
target: https://www.sendspace.com/file/gjwrkb
The text was updated successfully, but these errors were encountered: