Class ValueLabel
- Namespace
- SunamoData.Data
- Assembly
- SunamoData.dll
Represents a pair of value and label strings.
public class ValueLabel
- Inheritance
-
ValueLabel
- Inherited Members
- Extension Methods
Constructors
ValueLabel(string, string)
Initializes a new instance of the ValueLabel class.
public ValueLabel(string value, string label)
Parameters
Properties
Label
Gets or sets the label.
public string Label { get; set; }
Property Value
Value
Gets or sets the value.
public string Value { get; set; }
Property Value
Methods
Get(string, string)
Creates a new instance of ValueLabel with the specified value and label.
public static ValueLabel Get(string value, string label)
Parameters
Returns
- ValueLabel
A new instance of ValueLabel.