/Home /Archive /Syndicate /Blog /Support /About /Contact  
All Visual Basic Feeds in one place!





Defining a list of integers in your code involves lots of tedious typing. In VB, you can’t do this: 'Dim numberList As new List(Of Integer) = {1, 2, 3, 4, 5, 6, 7, 8, 9} So you have to either add numbers to the list manually, or create an array, which still involves lots of tedious typing: Dim numberList() As Integer = {1, 2, 3, 4, 5, 6, 7, 8, 9} With .NET 3.5, you can instead use the Range method of the Enumerable class that is part of the System.Linq namespace. In ... [For the complete article see the Orignal Post link below] ...
© 2005 Serge Baranovsky. All rights reserved.
All feed content is property of original publisher. Designated trademarks and brands are the property of their respective owners.

This site is maintained by SubMain(), a division of vbCity.com, LLC