1 2 3 4 5 6 7 8 9 10
// CS1106: `S.Foo(this string)': Extension methods must be defined in a non-generic static class // Line: 6 class S { static void Foo (this string s) { } }