示例#1
0
 //============================================================
 // <T>构造属性集合。</T>
 //============================================================
 public void Append(FAttributes attributes)
 {
     foreach (IStringPair pair in attributes)
     {
         Set(pair.Name, pair.Value);
     }
 }
示例#2
0
 //============================================================
 // <T>构造属性集合。</T>
 //============================================================
 public FAttributes(FAttributes attributes)
 {
     Append(attributes);
 }