Meh, me = confused

I want to get a list of all the elements in an Enum...
let's say I have this:
VB Code:
  1. Enum SomeThing
  2.        A = 1
  3.        B
  4.        C
  5.        D
  6. End Enum
Let's say I want to add all the values AND all the names of the variables in that enum in a listbox...how can I do that

so the listbox will be something like this:
"A = 1"
"B = 2"
"C = 3"


I think it's possible to do this with the parse method if you know the name of the variables... but what if I dont know that