a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
224 B
C#
25 lines
224 B
C#
interface I
|
|
{
|
|
int this[int i] { get; set; }
|
|
}
|
|
|
|
class C : I
|
|
{
|
|
int I.this[int i]
|
|
{
|
|
get { return i; }
|
|
set { }
|
|
}
|
|
|
|
public int this[int i]
|
|
{
|
|
get { return i; }
|
|
private set { }
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|
|
|