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 …
0
votes
when to use Collection<T> vs List<T>
in this question you can see the difference between list and collection of T
…
