1 2 3 4 5 6 7 8 9
// CS1100: The parameter modifier `this' can only be used on the first parameter // Line: 6 static class S { static void Foo (bool b, this string s) { } }