Question Transcode UNICODE- to IA5-String

ewoki

New member
Joined
Nov 24, 2015
Messages
1
Programming Experience
Beginner
How you can transcode an UNICODE-String into an IA5-String with VB.NET ?
 
I think that is System.Text.Encoding.GetEncoding("x-IA5"), or GetEncoding(20105). You can use for example System.Text.Encoding.Convert to convert from one encoding to another, or use the encoding.GetBytes/GetString methods.
 
Back
Top