示例#1
0
文件: Nodes.cs 项目: tumcms/QL4BIM
 public override string ToString()
 {
     if (SetNode != null)
     {
         return("AttributeAccessNode: " + SetNode.Value + "." + ExAttNode.Value);
     }
     else
     {
         return("AttributeAccessNode: " + RelAttNode.ToShortString() + "." + ExAttNode.Value);
     }
 }
示例#2
0
文件: Nodes.cs 项目: tumcms/QL4BIM
 public override string ToString()
 {
     if (SetNode != null)
     {
         return("TypePredNode: " + SetNode.Value + " is " + Type);
     }
     else
     {
         return("TypePredNode: " + RelAttNode.ToShortString() + " is " + Type);
     }
 }