Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim s As String = "Hello World"
Dim sbs() As SByte
Dim chars As Char() = s.ToCharArray
For i As Integer = 0 To chars.Length - 1
ReDim Preserve sbs(i)
sbs(i) = Convert.ToSByte(chars(i))
Next