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