UnicodeEncoding Constructor
Collapse the table of content
Expand the table of content

UnicodeEncoding Constructor

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Initializes a new instance of the UnicodeEncoding class.

Namespace:  System.Text
Assembly:  mscorlib (in mscorlib.dll)

'Declaration
Public Sub New

This constructor creates an instance that uses the little-endian byte order, provides a Unicode byte order mark, and does not throw an exception when an invalid encoding is detected.

NoteNote:

For security reasons, your applications are recommended to enable error detection by using the constructor that accepts a throwOnInvalidBytes parameter and setting that parameter to true.

The following example creates a new UnicodeEncoding instance and displays the name of the encoding.


Imports System.Text

Class Example

   Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
      Dim uni As New UnicodeEncoding()
      Dim encodingName As String = uni.WebName
      outputBlock.Text &= "Encoding name: " & encodingName & vbCrLf
   End Sub 'Main
End Class 'UnicodeEncodingExample
' The example displays the following output:
'       Encoding name: utf-16


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft