We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c263d7b commit 17016c7Copy full SHA for 17016c7
ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3452.cs
@@ -1,5 +1,3 @@
1
-#pragma warning disable CS9124
2
-
3
using System;
4
5
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
@@ -29,7 +27,7 @@ private class C3(StringComparison comparison)
29
27
30
28
internal StringComparison Test()
31
{
32
- return comparison;
+ return _comparison;
33
}
34
35
ICSharpCode.Decompiler.Tests/TestCases/Pretty/Issue3610.cs
using System.Collections.Generic;
@@ -47,7 +45,7 @@ private abstract class PCFieldInitTest(StringComparison value)
47
45
48
46
public bool Func()
49
50
- return value == StringComparison.Ordinal;
+ return _value == StringComparison.Ordinal;
51
52
53
0 commit comments