Vector2DTests 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 vector2DValues = new Dictionary<Vector2D, int> { { v1, 1 }, { v2, 2 } };
    Assert.IsTrue(vector2DValues.ContainsKey(v1));
    Assert.IsTrue(vector2DValues.ContainsKey(v2));
    Assert.IsFalse(vector2DValues.ContainsKey(new Vector2D(5, 6)));
}
See Also