Table of Contents

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

value string

The value.

label string

The label.

Properties

Label

Gets or sets the label.

public string Label { get; set; }

Property Value

string

Value

Gets or sets the value.

public string Value { get; set; }

Property Value

string

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

value string

The value.

label string

The label.

Returns

ValueLabel

A new instance of ValueLabel.