If you dont want to use the visualbasic namespace here is the simple
right function equivalent in vb.net:

Private Function Right(ByVal str As String, _
ByVal Length As Integer) As
String

Right = str.Substring(str.Length - Length)

End Function