Namespace: DeltaEngine.Input
Assembly: DeltaEngine.Input (in DeltaEngine.Input.dll) Version: 1.1.1.0 (1.1.1)
Tests: DeltaEngine.Input.Windows.Tests.TouchCollectionTests
4 unit tests call DeltaEngine.Input.TouchBase.FindIndexByIdOrGetFreeIndex(System.Int32)
Assembly: DeltaEngine.Input (in DeltaEngine.Input.dll) Version: 1.1.1.0 (1.1.1)
Syntax
Parameters
- id
- Type: System Int32
Return Value
Type: Int32Remarks
Examples
[Test, CloseAfterFirstFrame] public void FindIndexByIdOrGetFreeIndex() { Assert.AreEqual(0, touchCollection.FindIndexByIdOrGetFreeIndex(478)); }
[Test, CloseAfterFirstFrame] public void FindIndexByIdWithExistingId() { emptyTouchCollection.ids[5] = 5893; Assert.AreEqual(5, emptyTouchCollection.FindIndexByIdOrGetFreeIndex(5893)); }
[Test, CloseAfterFirstFrame] public void FindFreeIndex() { Assert.AreEqual(0, touchCollection.FindIndexByIdOrGetFreeIndex(456)); }
See Also