-
-
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
ICSharpCode.ILSpy.AssertionFailedException #2458
Comments
Cannot reproduce this. The current output seems correct, the public double[] Heads
{
get
{
double[] array = null;
array = new double[m_heads.Count];
for (int i = 0; i < m_heads.Count; i++)
{
ref double reference = ref array[i];
object obj = m_heads[i];
reference = (double)((obj is double) ? obj : null);
}
return array;
}
} @greenozon can you confirm? |
Grabbed latest debug ILSpy, still see it ILSpy version 7.2.0.6660-preview1 C#7.3 save code:
|
Still cannot reproduce this... maybe its because I am missing the other references? The assembly you sent has many references, which I do not have access to. Maybe you can send the whole package via email? Thanks! |
You are right! but there is another element which throws exception if you search for it and then click on it
|
Another elements leading to exception when navigating to it:
|
I think that these are all different problems, might be better to split this into multiple issues. |
|
Then that's a bug in |
Steps to reproduce
https://www.sendspace.com/file/5zf6aw
Error message shown
Expected result:
Details
ILSpy version 7.1.0.6580
.NET version 4.8.3928.0
The text was updated successfully, but these errors were encountered: