How can I go through each of the properties in my custom object? It is not a collection object, but is there something like this for non-collection objects?
For Each entry as String in myObject ' Do stuff here... Next
There are string, integer and boolean properties in my object.
By using reflection you can do that. In C# it looks like that;
Added a VB.Net translation: