IMFGS List
IMFGSList Public interface
Description
Represents a list of objects
Diagram
flowchart LR classDef interfaceStyle stroke-dasharray: 5 5; classDef abstractStyle stroke-width:4px subgraph VGWWCoreIEx VGWWCoreIEx.IMFGSList[[IMFGSList]] class VGWWCoreIEx.IMFGSList interfaceStyle; endMembers
Properties
Public properties
| Type | Name | Methods |
|---|---|---|
int | CountGets the number of objects in the list. | get |
object | Item | get, set |
Methods
Public methods
| Returns | Name |
|---|---|
void | Add(object item)Add an object to the list |
void | Clear()Clear the list. |
void | Insert(int index, object item)Insert an object at the specified index. |
string | Join(string separator)Concatenates the string value of each item in the collection. |
void | RemoveAt(int index)Removes an object from the list at the specified index. |
Details
Summary
Represents a list of objects
Methods
Add
public void Add(object item)Arguments
| Type | Name | Description |
|---|---|---|
object | item | The object to be added |
Summary
Add an object to the list
Clear
public void Clear()Summary
Clear the list.
Insert
public void Insert(int index, object item)Arguments
| Type | Name | Description |
|---|---|---|
int | index | The index where the object is to be inserted. |
object | item | The object to be inserted. |
Summary
Insert an object at the specified index.
Remarks
Any existing objects in the list at or after the index will have their index incremented by one.
Join
public string Join(string separator)Arguments
| Type | Name | Description |
|---|---|---|
string | separator | The separator between each item value. |
Summary
Concatenates the string value of each item in the collection.
Returns
A string of item values.
RemoveAt
public void RemoveAt(int index)Arguments
| Type | Name | Description |
|---|---|---|
int | index | The index of the object. |
Summary
Removes an object from the list at the specified index.
Properties
Count
public int Count { get; }Summary
Gets the number of objects in the list.
Item
public object Item { get; set; }Generated with ModularDoc