Class OrderedDict<TValue>
- Namespace
- Mech3DotNet.Zbd
- Assembly
- Mech3DotNet.dll
public class OrderedDict<TValue> : IEnumerable<KeyValuePair<string, TValue>>, IEnumerable
Type Parameters
TValue
- Inheritance
-
OrderedDict<TValue>
- Implements
- Inherited Members
Constructors
OrderedDict()
public OrderedDict()
Properties
Count
public int Count { get; }
Property Value
this[int]
public TValue this[int index] { get; }
Parameters
index
int
Property Value
- TValue
this[string]
public TValue this[string key] { get; set; }
Parameters
key
string
Property Value
- TValue
Methods
Add(string, TValue)
public void Add(string key, TValue value)
Parameters
key
stringvalue
TValue
Clear()
public void Clear()
ContainsKey(string)
public bool ContainsKey(string key)
Parameters
key
string
Returns
GetEnumerator()
Returns an enumerator that iterates through the collection.
public IEnumerator<KeyValuePair<string, TValue>> GetEnumerator()
Returns
- IEnumerator<KeyValuePair<string, TValue>>
An enumerator that can be used to iterate through the collection.
Remove(string)
public void Remove(string key)
Parameters
key
string