TextInsertAlloc method

Pointer<Char> TextInsertAlloc(
  1. Pointer<Char> text,
  2. Pointer<Char> insert,
  3. int position
)

Insert text in a defined byte position, memory must be freed

Implementation

Pointer<Char> TextInsertAlloc(Pointer<Char> text, Pointer<Char> insert, int position)
  => _TextInsertAlloc(text, insert, position);