GetCharCount() 공개 메소드

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