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
KFirst key type.
TSecond key type.
VValue 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
key1KThe key1.
key2TThe key2.
valueVThe 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()