IMetaList<TDwo> Interface
.NET Standard 2.x
Represents a list of TDwo type in DwMeta.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Syntax
 public interface IMetaList<TDwo> : IEnumerable<TDwo>
Properties
| Name | Return Type | Description | 
|---|---|---|
| Count | int | Gets the number of elements contained in the list. | 
| this[int index] | TDwo | Gets or sets an element by index. | 
| this[string index] | TDwo | Gets or sets an element by name. | 
Methods
| Name | Return Type | Description | 
|---|---|---|
| Add(TDwo item) | void | Adds an object to the end of the list. | 
| Exists | bool | Determines whether the list contains the element. | 
| Find | TDwo | Searches for an element according to the specified name. | 
| Remove | bool | Removes the first occurrence of the specified object from the list. |