Ejemplo n.º 1
0
Archivo: Cells.cs Proyecto: Dugin13/P10
 public ArrayFormula(CachedArrayFormula caf, int col, int row)
     : this(caf, new CellAddr(col, row))
 {
 }
Ejemplo n.º 2
0
Archivo: Cells.cs Proyecto: Dugin13/P10
        private readonly CellAddr ca; // Cell's location within array value

        #endregion Fields

        #region Constructors

        public ArrayFormula(CachedArrayFormula caf, CellAddr ca)
        {
            this.caf = caf; this.ca = ca;
        }