public T this[
int x,
int y
] { get; set; }
Public Default Property Item (
x As Integer,
y As Integer
) As T
Get
Set
public:
virtual property T default[int x, int y] {
T get (int x, int y) sealed;
void set (int x, int y, T value) sealed;
}
abstract Item : 'T with get, set
override Item : 'T with get, set