a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
9 lines
184 B
C#
9 lines
184 B
C#
// CS0082: A member `I.set_Item(int[], params int[])' is already reserved
|
|
// Line : 7
|
|
|
|
interface I
|
|
{
|
|
void set_Item (int[] a, params int[] b);
|
|
int[] this [params int[] ii] { get; }
|
|
}
|