You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like decompiling an expression like this results loosing the enum type of the constant TestEnum.First, and having only an Int32 value of 1.
public enum TestEnum {
None = 0,
First = 1,
Second = 2
}
public class Test {
public TestEnum EnumProperty { get; set; }
[Decompileable]
public bool IsFirst { get { return EnumProperty == TestEnum.First; } }
}
The text was updated successfully, but these errors were encountered:
It seems like decompiling an expression like this results loosing the enum type of the constant
TestEnum.First
, and having only anInt32
value of1
.The text was updated successfully, but these errors were encountered: