Build a row for a latin square.

Namespace:  Bespoke.Common
Assembly:  Bespoke.Common (in Bespoke.Common.dll) Version: 4.3.0.0 (4.3.0.0)

Syntax

C#
public static int[] BuildLatinSquareRow(
	int seed,
	int minValue,
	int conditionCount
)
Visual Basic (Declaration)
Public Shared Function BuildLatinSquareRow ( _
	seed As Integer, _
	minValue As Integer, _
	conditionCount As Integer _
) As Integer()
Visual C++
public:
static array<int>^ BuildLatinSquareRow(
	int seed, 
	int minValue, 
	int conditionCount
)

Parameters

seed
Type: System..::.Int32
The seed (starting point) of the row.
minValue
Type: System..::.Int32

[Missing <param name="minValue"/> documentation for "M:Bespoke.Common.Library.BuildLatinSquareRow(System.Int32,System.Int32,System.Int32)"]

conditionCount
Type: System..::.Int32

[Missing <param name="conditionCount"/> documentation for "M:Bespoke.Common.Library.BuildLatinSquareRow(System.Int32,System.Int32,System.Int32)"]

Return Value

[Missing <returns> documentation for "M:Bespoke.Common.Library.BuildLatinSquareRow(System.Int32,System.Int32,System.Int32)"]

See Also