Table of Contents

Class DoubleKeyPairValue<K, T, V>

Namespace
HelixToolkit
Assembly
HelixToolkit.dll

Represents two keys and a value.

public sealed class DoubleKeyPairValue<K, T, V> where K : notnull where T : notnull

Type Parameters

K

First key type.

T

Second key type.

V

Value type.

Inheritance
DoubleKeyPairValue<K, T, V>
Inherited Members

Constructors

DoubleKeyPairValue(K, T, V)

Initializes a new instance of the DoubleKeyPairValue<K, T, V> class.

public DoubleKeyPairValue(K key1, T key2, V value)

Parameters

key1 K

The key1.

key2 T

The key2.

value V

The value.

Properties

Key1

Gets or sets the key1.

public K Key1 { get; set; }

Property Value

K

The key1.

Key2

Gets or sets the key2.

public T Key2 { get; set; }

Property Value

T

The key2.

Value

Gets or sets the value.

public V Value { get; set; }

Property Value

V

The value.

Methods

ToString()

Returns a string that represents this instance.

public override string ToString()

Returns

string

A string that represents this instance.