Пример #1
0
        //---------------------------------------------------------------------

        public T this[Landis.Landscape.Location location]
        {
            set {
                this[(int)location.Row, (int)location.Column] = value;
            }
        }
Пример #2
0
        //---------------------------------------------------------------------

        public T this[Landis.Landscape.Location location]
        {
            get {
                return(this[(int)location.Row, (int)location.Column]);
            }
        }