Search Results

0
votes

Language showdown: Convert string of digits to array of integers?

In VB.NET: Dim source As String = "123458796" Dim data() As Char = source.ToCharArray Dim res(source.length - 1) As Integer for i as integer = 0 to Source.length - 1 res(i) …