System.Text.SuperEncoding.GetCharCount C# (CSharp) Method

GetCharCount() public method

public GetCharCount ( byte bytes, int index, int count ) : int
bytes byte
index int
count int
return 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
 public override int GetCharCount(byte[] bytes, int index, int count)
 {
     return _encoding.GetCharCount(bytes, index, count, this);
 }