-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathDCExpressoinItemList.cs
More file actions
43 lines (37 loc) · 1.02 KB
/
DCExpressoinItemList.cs
File metadata and controls
43 lines (37 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
都昌数值表达式引擎 DCSoft.Expression
南京都昌信息科技有限公司 2018年 版权所有
公司网址 http://www.dcwriter.cn
*/
using System;
using System.Collections.Generic;
using System.Text;
namespace DCSoft.Expression
{
/// <summary>
/// 表达式对象列表
/// </summary>
[System.Runtime.InteropServices.ComVisible(false)]
public class DCExpressoinItemList : List<DCExpressionItem>
{
public DCExpressoinItemList()
{
}
public DCExpressoinItemList CloneDeeply()
{
DCExpressoinItemList list = new DCExpressoinItemList();
foreach (var item in this)
{
list.Add(item.Clone());
}
return list;
}
internal void ToDebugString(int indentLevel, StringBuilder str)
{
foreach (var item in this)
{
item.ToDebugString(indentLevel, str);
}
}
}
}