I'm new to VB and I was having some issues with the following code.
Dim random As String = "asfdgasfdgasfdgasfd11"
Dim length As Integer = Nothing
length = random.Length
Console.WriteLine(random.Length)
Console.WriteLine(length)
Console.WriteLine()
Console.WriteLine()
Console.ReadLine()
If length <= 20 Then
Console.WriteLine(random.Substring(0, length))
ElseIf length <= 40 Then
Console.WriteLine(random.Substring(0, 20))
Console.WriteLine(random.Substring(20, length))
End If
Console.ReadLine()
Error:
" An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll
Additional information: Index and Length must refer to a location within the string "
I think the error is occurring due to (20, length)). I tried to assign length to a variable so the program does not crash unless the trying is a specific number of characters.
I am attempting to have a variable of any given length and if it is greater than 20 characters then only print 20 characters per line.