coxantohi

Results 2 issues of coxantohi

### Input code ```c# namespace NullForgivingOperatorNamespace { public class NullForgivingOperatorClass { public void NullForgivingOperatorMethod() { int? x = null; string s = x?.ToString(); } } } ``` ### Decompiled code...

Bug
Decompiler

### Input code ```c# public static class ExtensionMethods { public static int Count(this System.Collections.IEnumerable source) { return 5; } } public class ProblemClass { public void ProblemMethod() { IEnumerable s...

Bug
Decompiler