TextCopy method

int TextCopy(
  1. Pointer<Char> dst,
  2. Pointer<Char> src
)

Copy one string to another, returns bytes copied

Implementation

int TextCopy(Pointer<Char> dst, Pointer<Char> src)
  => _TextCopy(dst, src);