コード例 #1
0
ファイル: Cells.cs プロジェクト: Dugin13/P10
 public ArrayFormula(CachedArrayFormula caf, int col, int row)
     : this(caf, new CellAddr(col, row))
 {
 }
コード例 #2
0
ファイル: Cells.cs プロジェクト: 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;
        }