The Roman8 charset is not supported by C#, but I need to use it properly (Encoding / Decoding strings), so I want to know what is the best method to create my own Encoding in order to support this Encoding?
Is that enough :
class Roman8Encoding : Encoding
What about Encoder ? Decoder ? EncoderFallback ? DecoderFallback ?
Any explanation on how do the job correctly is welcome.
Thanks !