Represents a list of DataType values.
public class EasyData.DataTypeList
Package: EasyData.Core (targets: netstandard2.0)
Assembly: EasyData.Core.dll
| Name | Type | Description |
|---|
DataTypeList(DataType[] typeList) | void | Initializes a new instance of the DataTypeList class. |
DataTypeList(string listStr) | void | Initializes a new instance of the DataTypeList class. |
| DataTypeList() | void | Initializes a new instance of the DataTypeList class. |
| Name | Type | Description |
|---|
| CommaText | string | Gets or sets the text representation of type list delimited with the comma. |
| Name | Type | Description |
|---|
AddRange(IEnumerable<DataType> types) | void | Adds the type stored in an IEnumerable to the end of the list. |
InsertItem(int index, DataType item) | void | Inserts an element into the System.Collections.ObjectModel.Collection'1 at the specified index. |
InsertRange(int index, IEnumerable<DataType> types) | void | Inserts the types stored in an IEnumerable object into the list starting from specified index. |
| Name | Type | Description |
|---|
| BoolDataTypes | DataTypeList | The list which represents the most common data types |
| CommonDataTypes | DataTypeList | The list which represents the most common data types |
| FloatDataTypes | DataTypeList | The list which represents all float data types |
| IntegerDataTypes | DataTypeList | The list which represents all integer-like data types (numeric and boolean) |
| RangeDataTypes | DataTypeList | The list which represents all ranged data types (numeric and boolean) |
| StringDataTypes | DataTypeList | The list which represents all string data types (numeric and boolean) |
| TimeDataTypes | DataTypeList | The list which represents all string data types (numeric and boolean) |