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