System.Xml.Ucs4Decoder.GetCharCount C# (CSharp) Méthode

GetCharCount() public méthode

public GetCharCount ( byte bytes, int index, int count ) : int
bytes byte
index int
count int
Résultat int
        public override int GetCharCount( byte[] bytes, int index, int count ) {
            return ( count + lastBytesCount ) / 4;
        }

Usage Example

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