System.Text.SuperEncoding.GetChars C# (CSharp) Метод

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
        public override int GetChars(byte[] bytes, int byteIndex, int byteCount, char[] chars, int charIndex)
        {
            return GetChars(bytes, byteIndex, byteCount, chars, charIndex, null);
        }

Same methods

SuperEncoding::GetChars ( byte bytes, int byteIndex, int byteCount, char chars, int charIndex, SuperDecoder decoder ) : int

Usage Example

Пример #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);
 }