coxantohi
coxantohi
### Input code ```c# namespace NullForgivingOperatorNamespace { public class NullForgivingOperatorClass { public void NullForgivingOperatorMethod() { int? x = null; string s = x?.ToString(); } } } ``` ### Decompiled code...
### 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...