System.Xml.Ucs4Decoder.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 ( count + lastBytesCount ) / 4;
        }

Usage Example

Esempio n. 1
0
 public override Int32 GetCharCount(Byte[] bytes, Int32 index, Int32 count)
 {
     return(ucs4Decoder.GetCharCount(bytes, index, count));
 }
All Usage Examples Of System.Xml.Ucs4Decoder::GetCharCount