Class DataPair<T>
Represents a generic way to provide information about arbitrary data.
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public class DataPair<T> : DataPair
Type Parameters
Name | Description |
---|---|
T | The type of the data value being represented by this instance. |
Constructors
| Improve this Doc View SourceDataPair(String, T)
Initializes a new instance of the DataPair class.
Declaration
public DataPair(string name, T value)
Parameters
Type | Name | Description |
---|---|---|
String | name | The name of the data pair. |
T | value | The value of the data pair. |
DataPair(String, T, Type)
Initializes a new instance of the DataPair class.
Declaration
public DataPair(string name, T value, Type typeOf)
Parameters
Type | Name | Description |
---|---|---|
String | name | The name of the data pair. |
T | value | The value of the data pair. |
Type | typeOf | The type of the data pair. |