C# UTF8Encoding IsSingleByte
Description
UTF8Encoding IsSingleByte
When overridden in a derived
class, gets a value indicating whether the current encoding uses single-byte
code points.
Syntax
UTF8Encoding.IsSingleByte
has the following syntax.
[ComVisibleAttribute(false)]
public virtual bool IsSingleByte { get; }
Example
using System;/*from www . j a va 2s. c o m*/
using System.Text;
public class SamplesEncoding {
public static void Main() {
foreach( EncodingInfo ei in Encoding.GetEncodings() ) {
Encoding e = ei.GetEncoding();
Console.Write( "{0,-6} {1,-25} ", ei.CodePage, ei.Name );
Console.Write( "{0,-8} {1,-8} ", e.IsSingleByte, e.IsSingleByte );;
}
}
}
The code above generates the following result.