System.Xml.Ucs4Encoding.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 ucs4Decoder.GetChars( bytes, byteIndex, byteCount, chars, charIndex );
        }