10 lines
147 B
C#
10 lines
147 B
C#
|
// CS0100: The parameter name `obj' is a duplicate
|
||
|
// Line: 4
|
||
|
|
||
|
abstract class C
|
||
|
{
|
||
|
public abstract int this [object obj, object obj] {
|
||
|
set;
|
||
|
}
|
||
|
}
|