SecretOfGaia.Terrain.this C# (CSharp) Метод

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

public this ( int position ) : SecretOfGaia.Carte
position int
Результат SecretOfGaia.Carte
        public override Carte this[int position]
        {
            get
            {
                if (_cartesSupreposées.ContainsKey(position))
                {
                    return _cartesSupreposées[position].Last();
                }
                else
                {
                    return base[position];
                }
            }
        }