System.Text.SuperEncoding.GetCharCount C# (CSharp) 메소드

GetCharCount() 공개 메소드

public GetCharCount ( byte bytes, int index, int count ) : int
bytes byte
index int
count int
리턴 int
        public override int GetCharCount(byte[] bytes, int index, int count)
        {
            return GetCharCount(bytes, index, count, null);
        }

Same methods

SuperEncoding::GetCharCount ( byte bytes, int index, int count, SuperDecoder decoder ) : int

Usage Example

예제 #1
0
파일: Encoding.cs 프로젝트: Hanyuz1996/iTV6
 public override int GetCharCount(byte[] bytes, int index, int count)
 {
     return _encoding.GetCharCount(bytes, index, count, this);
 }