Search Results

17
votes

How do I overload the square-bracket operator in C#?

Hi, you can find how to do it here. In short it is: public object this[int i] { get {return I …