Microsoft’s Visual Basic is about to sprout some powerful legs this year in the form of Visual Basic.Net. Companies planning to adopt Visual Basic.Net will be able to leverage application capabilities ...
If you've created an anonymous object, you've probably written code like this: Dim anon = New With { .FirstName = "Peter", .LastName = "Vogel" } This code would give you a new, anonymous object with ...
If you ever need to work with all of the properties in some object, you can use GetType and GetProperties to retrieve the object's PropertyInfo objects. After that you can do what you want. Here's an ...