Example #1
0
 public unsafe SeString Parse(ReadOnlySpan <byte> data) => SeString.Parse(data);
Example #2
0
 public SeString Parse(byte[] bytes) => SeString.Parse(new ReadOnlySpan <byte>(bytes));
Example #3
0
 public unsafe SeString Parse(byte *ptr, int len) => SeString.Parse(ptr, len);