VB.NET has a STRINGS class with RIGHT method that will return 1 (or more) characters.
Dim myString as String = "123456"
Dim sLast as String = Strings.Right(myString, 1)
https://learn.microsoft.com/en-us/dotnet/api/microsoft.visualbasic.strings?view=netframework-4.8.1