Vector3DTests GetHashCodeViaDictionary Method Delta Engine Documentation

Namespace: DeltaEngine.Tests.Datatypes
Assembly: DeltaEngine.Tests (in DeltaEngine.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void GetHashCodeViaDictionary()
Examples

[Test]
public void GetHashCodeViaDictionary()
{
    var vector3DValues = new Dictionary<Vector3D, int> { { v1, 1 }, { v2, 2 } };
    Assert.IsTrue(vector3DValues.ContainsKey(v1));
    Assert.IsTrue(vector3DValues.ContainsKey(v2));
    Assert.IsFalse(vector3DValues.ContainsKey(new Vector3D(5, 6, 7)));
}
See Also