Method Concat
Concat(Word, Word)
Concatenates four specified instances of String.
public static string Concat(Word word0, Word word1)
Parameters
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
word0WordThe first string to concatenate.
word1WordThe second string to concatenate.
word2WordThe 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
word0WordThe first string to concatenate.
word1WordThe second string to concatenate.
word2WordThe third string to concatenate.
word3WordThe 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
valuesWord[]An array of string instances.
Returns
- string
The concatenated elements of values.