32 lines
336 B
C#
32 lines
336 B
C#
|
class Program
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
System.Console.WriteLine("Hi");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public class MyClass
|
||
|
{
|
||
|
protected internal virtual int this[int i]
|
||
|
{
|
||
|
protected get
|
||
|
{
|
||
|
return 2;
|
||
|
}
|
||
|
set
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public class Derived : MyClass
|
||
|
{
|
||
|
protected internal override int this[int i]
|
||
|
{
|
||
|
protected get
|
||
|
{
|
||
|
return 4;
|
||
|
}
|
||
|
}
|
||
|
}
|