Sunday, October 4, 2009

C# abstract index operator

That's how it's done:

    public abstract int this[int index]
    {
        get;
        set;
    }

No comments:

Post a Comment