示例#1
0
 public AppMain.NNS_NODENAMELIST Assign(AppMain.NNS_NODENAMELIST nodeNameList)
 {
     if (this != nodeNameList)
     {
         this.SortType      = nodeNameList.SortType;
         this.nNode         = nodeNameList.nNode;
         this.pNodeNameList = nodeNameList.pNodeNameList;
     }
     return(this);
 }
示例#2
0
 private string nnGetMaterialName(AppMain.NNS_NODENAMELIST pMaterialNameList, int MaterialIndex)
 {
     return(this.nnGetNodeName(pMaterialNameList, MaterialIndex));
 }
示例#3
0
 public NNS_NODENAMELIST(AppMain.NNS_NODENAMELIST nodeNameList)
 {
     this.SortType      = nodeNameList.SortType;
     this.nNode         = nodeNameList.nNode;
     this.pNodeNameList = nodeNameList.pNodeNameList;
 }
示例#4
0
 private int nnGetMaterialIndex(AppMain.NNS_NODENAMELIST pMaterialNameList, string MaterialName)
 {
     return(this.nnGetNodeIndex(pMaterialNameList, MaterialName));
 }