Пример #1
0
 /// <summary>
 /// Appends (copies) another KeyValueList to the end of this KeyValueList
 /// </summary>
 /// <param name="otherKeyValueList">he list to copy from</param>
 public void AddRange(KeyValueList <K, V> otherKeyValueList)
 {
     otherKeyValueList.CopyTo(this, 0);
 }