I (obviously incorrectly) had assumed that Cstr(something) was equivalent to something.ToString.
I wanted to get hold of an enumerated type as a string and it seems depending on which conversion method I use I either get the index of the enum or the name:
Public Enum vehicleType
Car
Lorry
Bicycle
End Enum
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MsgBox("Index is " & _
CStr(vehicleType.Car) & _
".Name is " & _
vehicleType.Car.ToString)
End Sub
End Class
Why are these conversions to string returning different elements of the enum type?
