TextJoin method

Pointer<Char> TextJoin(
  1. Pointer<Pointer<Char>> textList,
  2. int count,
  3. Pointer<Char> delimiter
)

Implementation

Pointer<Char> TextJoin(
  Pointer<Pointer<Char>> textList,
  int count,
  Pointer<Char> delimiter,
) {
  return _TextJoin(textList, count, delimiter);
}