Create a UnicodeEncoding to support big-endian byte ordering and not include the Unicode byte order mark : UnicodeEncoding « Internationalization I18N « VB.Net






Create a UnicodeEncoding to support big-endian byte ordering and not include the Unicode byte order mark

 


Imports System
Imports System.Text

Class UnicodeEncodingExample

    Public Shared Sub Main()

        Dim unicodeBigEndianNoBOM As New UnicodeEncoding(True, False)

    End Sub
End Class

   
  








Related examples in the same category

1.UnicodeEncoding Class represents a UTF-16 encoding of Unicode characters.
2.Create a UnicodeEncoding to support little-endian byte ordering and include the Unicode byte order mark.
3.Create a UnicodeEncoding to support little-endian byte ordering and not include the Unicode byte order mark
4.Create a UnicodeEncoding to support big-endian byte ordering and include the Unicode byte order mark
5.Create UnicodeEncoding class.
6.UnicodeEncoding.CharSize