GetChars() публичный Метод

public GetChars ( byte bytes, int byteIndex, int byteCount, char chars, int charIndex ) : int
bytes byte
byteIndex int
byteCount int
chars char
charIndex int
Результат int
Пример #1
0
 public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
 {
     return _encoding.GetChars(bytes, byteIndex, byteCount, chars, charIndex, this);
 }