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] );
            }
        }