示例#1
0
文件: Nodes.cs 项目: tumcms/QL4BIM
 public void SetOperator(string @operator)
 {
     OperatorNode = new OperatorNode(@operator)
     {
         Parent = this
     };
 }
示例#2
0
文件: Nodes.cs 项目: tumcms/QL4BIM
 public override int GetHashCode()
 {
     unchecked
     {
         return(((ReturnSetNode != null ? ReturnSetNode.GetHashCode() : 0) * 397) ^
                (OperatorNode != null ? OperatorNode.GetHashCode() : 0));
     }
 }