Belot.CardsCollection.this C# (CSharp) Метод

this() публичный Метод

Indexer for the collection
public this ( int index ) : Card
index int
Результат Card
        public Card this[int index]
        {
            get
            {
                return( (Card) InnerList[index] );
            }
        }