Create UTF8Encoding class. : UTF8Encoding « Internationalization I18N « VB.Net






Create UTF8Encoding class.

 


Imports System
Imports System.Text

Class UTF8EncodingExample

    Public Shared Sub Main()
        Dim utf8 As New UTF8Encoding()
        Dim encodingName As String = utf8.EncodingName
        Console.WriteLine("Encoding name: " & encodingName)
    End Sub 
End Class 

   
  








Related examples in the same category

1.Calculates number of characters produced by decoding a sequence of bytes from the specified byte array.
2.Decodes a sequence of bytes from the specified byte array into the specified character array.
3.Obtains a decoder that converts a UTF-8 encoded sequence of bytes into a sequence of Unicode characters.
4.Encoding.UTF8
5.UTF-8 encoding of Unicode characters.
6.Create UTF8Encoding class
7.UTF8Encoding.Equals