Beispiel #1
0
        private void method_12(int int_0, int int_1, int int_2, int int_3, int int_4, int int_5)
        {
            Cell cell = (Cell)base.matrix[int_0, int_1];

            if (cell != null)
            {
                ShortMap map = cell.getValuesMap();
                method_13(map, int_0, int_1, int_2, int_3, int_4, int_5);
                map = cell.getExpressionsMap();
                method_13(map, int_0, int_1, int_2, int_3, int_4, int_5);
            }
        }
Beispiel #2
0
        private object method_2(int int_0, int int_1, short short_0)
        {
            object obj2 = null;
            Cell   cell = (Cell)matrix[int_0, int_1];

            if (cell != null)
            {
                obj2 = cell.getValue(short_0);
                ShortMap map = cell.getValuesMap();
                if (map != null)
                {
                    map.remove(short_0);
                }
            }
            return(obj2);
        }