Пример #1
0
 public void AppendTo(ref ItemStructList <T> destinationList)
 {
     for (int index = 0; index < this.Count; ++index)
     {
         destinationList.Add(ref this.List[index]);
     }
 }
Пример #2
0
 static RadProperty()
 {
     RadProperty.UnsetValue             = new object();
     RadProperty.RegisteredPropertyList = new ItemStructList <RadProperty>(0x180);
     RadProperty.PropertyFromName       = new Hashtable();
     RadProperty.Synchronized           = new object();
     RadProperty.NullableType           = typeof(Nullable <>);
 }