TouchCollectionTests FindFreeIndex Method Delta Engine Documentation

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

public void FindFreeIndex()
Examples

[Test, CloseAfterFirstFrame]
public void FindFreeIndex()
{
    Assert.AreEqual(0, touchCollection.FindIndexByIdOrGetFreeIndex(456));
}
[Test, CloseAfterFirstFrame]
public void FindFreeIndexWithoutAnyFreeIndices()
{
    for (int index = 0; index < emptyTouchCollection.ids.Length; index++)
        emptyTouchCollection.ids[index] = 1;
    Assert.AreEqual(-1, emptyTouchCollection.FindIndexByIdOrGetFreeIndex(546));
}
See Also