Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 |
|
---|
3 | namespace OfficeOpenXml.FormulaParsing
|
---|
4 | {
|
---|
5 | internal class DependencyChain
|
---|
6 | {
|
---|
7 | internal List<FormulaCell> list = new List<FormulaCell>();
|
---|
8 | internal Dictionary<ulong, int> index = new Dictionary<ulong, int>();
|
---|
9 | internal List<int> CalcOrder = new List<int>();
|
---|
10 | internal void Add(FormulaCell f)
|
---|
11 | {
|
---|
12 | list.Add(f);
|
---|
13 | f.Index = list.Count - 1;
|
---|
14 | index.Add(ExcelCellBase.GetCellID(f.SheetID, f.Row, f.Column), f.Index);
|
---|
15 | }
|
---|
16 | }
|
---|
17 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.