Table of Contents

Method Concat

Namespace
Gamelogic.Words
Assembly
Gamelogic.Words.dll

Concat(Word, Word)

Concatenates four specified instances of String.

public static string Concat(Word word0, Word word1)

Parameters

word0 Word

The first string to concatenate.

word1 Word

The second string to concatenate.

Returns

string

The concatenation of word0, and word1.

Concat(Word, Word, Word)

Concatenates four specified instances of String.

public static string Concat(Word word0, Word word1, Word word2)

Parameters

word0 Word

The first string to concatenate.

word1 Word

The second string to concatenate.

word2 Word

The third string to concatenate.

Returns

string

The concatenation of word0, word1, and word2.

Concat(Word, Word, Word, Word)

Concatenates four specified instances of String.

public static string Concat(Word word0, Word word1, Word word2, Word word3)

Parameters

word0 Word

The first string to concatenate.

word1 Word

The second string to concatenate.

word2 Word

The third string to concatenate.

word3 Word

The fourth string to concatenate.

Returns

string

The concatenation of word0, word1, word2, and word3.

Concat(Word[])

Concatenates the elements of a specified String array.

public static string Concat(Word[] values)

Parameters

values Word[]

An array of string instances.

Returns

string

The concatenated elements of values.