I am using Visual Studio 2010 Prof.
In C #, I can create my own Enumerator and use it like this:
MyEnum value =
Now Intellisense will suggest the value MyEnum.
In VB, when I write:
Dim value As MyEnum =
I get a huge list of all types. When I start writing the value of my enumerator (maybe a word like "sunny"), it filters out some types, but I would like to have it like in C #. Anyway, I will use the MyEnum type, and not "String, Object Object or IntPtr ...".
Any idea?
Screenshot
I also made a short video:
Video with a sample (new)
Hi