C# UTF8Encoding IsReadOnly
Description
UTF8Encoding IsReadOnly
When overridden in a derived
class, gets a value indicating whether the current encoding is read-only.
Syntax
UTF8Encoding.IsReadOnly
has the following syntax.
[ComVisibleAttribute(false)]
public bool IsReadOnly { get; }
Example
using System;//from w ww.j a v a 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.IsReadOnly, e.IsReadOnly );;
}
}
}
The code above generates the following result.