Convert.ToBase64CharArray converts 8-bit unsigned integer array to Unicode character array : Convert « Development « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Development » ConvertScreenshots 
Convert.ToBase64CharArray converts 8-bit unsigned integer array to Unicode character array
  

Class Sample
    Public Shared Sub Main()
        Dim byteArray1(255As Byte
        Dim byteArray2(255As Byte
        Dim charArray(351As Char
        Dim charArrayLength As Integer

        Dim As Integer
        For x = To byteArray1.Length - 1
            byteArray1(x= CByte(x)
        Next x

        charArrayLength = Convert.ToBase64CharArray_
                                  byteArray1, 0, byteArray1.Length, _
                                  charArray, 0, _
                                  Base64FormattingOptions.InsertLineBreaks)
        Console.WriteLine(New [String](charArray))
    End Sub 

End Class

   
    
  
Related examples in the same category
1.Convert.ChangeType
2.Convert numeric string to SByte without a format provider
3.Convert numeric string to SByte with a format provider.
4.Converting strings to numbers in base
5.Convert the Char array back to a Byte array
6.Convert.ToBase64String converts 8-bit unsigned integers to string encoded with base-64 digits.
7.Convert string by different base
8.Convert.ToDateTime (Object) converts object to a DateTime object.
9.Convert.ToDateTime Method (Object, IFormatProvider) converts object to DateTime using culture-specific format
10.Convert.ToDateTime(String) converts string to date and time value.
11.Convert.ToDateTime(String, IFormatProvider) converts string to date and time, using culture-specific format
12.Convert single value to decimal
13.Convert hex string to Int16
14.Convert hex string to int64
15.Convert Long to Integer
16.Convert double to Integer
17.Convert BigInteger to Integer
18.Convert decimal to Integer
w___w_w._ja___v___a__2s__.___c_o__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.