DEBSOURCES
Skip Quicknav
sources / mono / 6.8.0.105%2Bdfsg-3.3 / mcs / errors / cs1105.cs
123456789
// CS1105: `S.Foo(this int?)': Extension methods must be declared static // Line: 6 static class S { void Foo (this int? s) { } }