Training
Module
Perform basic string formatting in C# - Training
Combine literal and variable text data that contain special characters, formatting, and Unicode into meaningful messages for the end user.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This topic shows how to convert a string into an array of bytes.
This example uses the GetBytes method of the Encoding.Unicode encoding class to convert a string into an array of bytes.
Private Function UnicodeStringToBytes(
ByVal str As String) As Byte()
Return System.Text.Encoding.Unicode.GetBytes(str)
End Function
You can choose from several encoding options to convert a string into a byte array:
Encoding.ASCII: Gets an encoding for the ASCII (7-bit) character set.
Encoding.BigEndianUnicode: Gets an encoding for the UTF-16 format using the big-endian byte order.
Encoding.Default: Gets an encoding for the system's current ANSI code page.
Encoding.Unicode: Gets an encoding for the UTF-16 format using the little-endian byte order.
Encoding.UTF32: Gets an encoding for the UTF-32 format using the little-endian byte order.
Encoding.UTF7: Gets an encoding for the UTF-7 format.
Encoding.UTF8: Gets an encoding for the UTF-8 format.
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Training
Module
Perform basic string formatting in C# - Training
Combine literal and variable text data that contain special characters, formatting, and Unicode into meaningful messages for the end user.