Namespace: DeltaEngine.Datatypes
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Tests.Datatypes.Vector2DTests
1 unit tests call DeltaEngine.Datatypes.Vector2D.GetHashCode
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Return Value
Type: Int32Remarks
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