IMFGS List Dictionary
IMFGSOrderedDictionary Public interface
Description
Represents am ordered dictionary of objects
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph VGWWCoreIEx VGWWCoreIEx.IMFGSOrderedDictionary[[IMFGSOrderedDictionary]] class VGWWCoreIEx.IMFGSOrderedDictionary interfaceStyle; endMembers
Properties
Public properties
| Type | Name | Methods |
|---|---|---|
int | CountGets the number of key/values pairs contained in the OrderedDictionary collection. | get |
object | Item | get, set |
Methods
Public methods
| Returns | Name |
|---|---|
void | Add(string key, object value)Adds an entry with the specified key and value into the IMFGSOrderedDictionary collection with the lowest available index. |
void | Clear()Removes all elements from the IMFGSOrderedDictionary collection. |
bool | Contains(string key)Determines whether the IMFGSOrderedDictionary collection contains a specific key. |
string``[] | GetKeys()Gets the keys contained in the IMFGSOrderedDictionary collection as an array. |
object``[] | GetValues()Gets the values contained in the IMFGSOrderedDictionary collection as an array. |
void | Insert(int index, string key, object value)Inserts a new entry into the IMFGSOrderedDictionary collection with the specified key and value at the specified index. |
void | Remove(string key)Removes the entry with the specified key from the IMFGSOrderedDictionary collection. |
void | RemoveAt(int index)Removes the entry at the specified index from the IMFGSOrderedDictionary collection. |
Details
Summary
Represents am ordered dictionary of objects
Methods
Add
public void Add(string key, object value)Arguments
| Type | Name | Description |
|---|---|---|
string | key | The key of the entry to add. |
object | value | The value of the entry to add. |
Summary
Adds an entry with the specified key and value into the IMFGSOrderedDictionary collection with the lowest available index.
Clear
public void Clear()Summary
Removes all elements from the IMFGSOrderedDictionary collection.
Contains
public bool Contains(string key)Arguments
| Type | Name | Description |
|---|---|---|
string | key | The key to locate in the IMFGSOrderedDictionary collection. |
Summary
Determines whether the IMFGSOrderedDictionary collection contains a specific key.
Returns
true if the IMFGSOrderedDictionary collection contains an element with the specified key; otherwise, false.
GetKeys
public string GetKeys()Summary
Gets the keys contained in the IMFGSOrderedDictionary collection as an array.
Returns
A string array of the keys in the IMFGSOrderedDictionary collection.
GetValues
public object GetValues()Summary
Gets the values contained in the IMFGSOrderedDictionary collection as an array.
Returns
An object array of the values in the IMFGSOrderedDictionary collection.
Insert
public void Insert(int index, string key, object value)Arguments
| Type | Name | Description |
|---|---|---|
int | index | The zero-based index at which the element should be inserted. |
string | key | The key of the entry to add. |
object | value | The value of the entry to add. |
Summary
Inserts a new entry into the IMFGSOrderedDictionary collection with the specified key and value at the specified index.
Remove
public void Remove(string key)Arguments
| Type | Name | Description |
|---|---|---|
string | key | The key of the entry to remove. |
Summary
Removes the entry with the specified key from the IMFGSOrderedDictionary collection.
RemoveAt
public void RemoveAt(int index)Arguments
| Type | Name | Description |
|---|---|---|
int | index | The zero-based index of the entry to remove. |
Summary
Removes the entry at the specified index from the IMFGSOrderedDictionary collection.
Properties
Item
public object Item { get; set; }Count
public int Count { get; }Summary
Gets the number of key/values pairs contained in the OrderedDictionary collection.
Generated with ModularDoc