I have a program where a user enters a list of numbers in the form of a string. This list of numbers is always a multiple of 8.
So the list can contain 8, 16, 32, 40
Function slice(ByVal s as String) As String() Return (From c As String in s).ToArray() End Function