9 lines
158 B
C#
9 lines
158 B
C#
|
// 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)
|
||
|
{
|
||
|
}
|
||
|
}
|