Tagged Questions
1
vote
1answer
980 views
Converting enum tostring of underlying type in VB.Net (Option Strict On)
I'd like to get a string representation of the underlying type of the enum.
Dim target As System.ConsoleColor = ConsoleColor.Cyan
Dim actual = 'What goes here?
Dim expected = "11"