C# Encoding IsSingleByte
Description
Encoding IsSingleByte
When overridden in a derived class,
gets a value indicating whether the current encoding uses single-byte code
points.
Syntax
Encoding.IsSingleByte
has the following syntax.
[ComVisibleAttribute(false)]
public virtual bool IsSingleByte { get; }
Example
using System;//from ww w .j a v a 2s. co m
using System.Text;
public class SamplesEncoding {
public static void Main() {
foreach( EncodingInfo ei in Encoding.GetEncodings() ) {
Encoding e = ei.GetEncoding();
Console.WriteLine(ei.Name );
Console.WriteLine(e.IsSingleByte );
}
}
}
The code above generates the following result.