Matrix ToString Method Delta Engine Documentation

Namespace: DeltaEngine.Datatypes
Assembly: DeltaEngine (in DeltaEngine.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public override string ToString()

Return Value

Type: String
Remarks

Tests: DeltaEngine.Tests.Datatypes.MatrixTests
Examples

1 unit tests call DeltaEngine.Datatypes.Matrix.ToString
[Test]
public void WriteMatrix()
{
    const string MatrixString = "0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15";
    Assert.AreEqual(MatrixString, matrix.ToString());
}
See Also