8 lines
138 B
C#
8 lines
138 B
C#
|
// CS1105: `ITest.Method(this int)': Extension methods must be declared static
|
||
|
// Line: 6
|
||
|
|
||
|
interface ITest
|
||
|
{
|
||
|
void Method (this int a);
|
||
|
}
|