C# Encoding CodePage
Description
Encoding CodePage
When overridden in a derived class,
gets the code page identifier of the current Encoding.
Syntax
Encoding.CodePage
has the following syntax.
public virtual int CodePage { get; }
Example
using System;/*from w w w. j a va 2 s .com*/
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.CodePage );
}
}
}
The code above generates the following result.