示例#1
0
 protected virtual void InitializeLocation()
 {
     Location = new TreeItemLocation(Name);
 }
示例#2
0
 protected override void InitializeLocation()
 {
     Location = new TreeItemLocation(Name, MSSN);
 }
示例#3
0
 public static TreeItemLocation Merge(this TreeItemLocation location1, TreeItemLocation location2)
 {
     return(new TreeItemLocation(location1.Values.Concat(location2.Values).ToArray()));
 }