Aardvark.Base.Dict.Add(System.Collections.Generic.KeyValuePair)

Here are the examples of the csharp api class Aardvark.Base.Dict.Add(System.Collections.Generic.KeyValuePair) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: aardvark.base
Source File: Dict_auto.cs
public void AddRange(IEnumerable<KeyValuePair<TKey, TValue>> items)
        {
            foreach (var item in items) Add(item);
        }