我想在一个类中添加一个运算符。我目前有一种GetValue()方法,我想用[]运算符替换。
GetValue()
[]
class A { private List<int> values = new List<int>(); public int GetValue(int index) => values[index]; }
public int this[int key] { get => GetValue(key); set => SetValue(key, value); }