MatrixTests AccessViolation 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 AccessViolation()
Examples

[Test]
public void AccessViolation()
{
    float num = matrix[15];
    Assert.AreEqual(15, num);
    Assert.Throws<IndexOutOfRangeException>(delegate { num = matrix[17]; });
See Also