June 2009 - Posts

0
Comments

Convert Array of Objects to a Generic List by Kiyoshi

Working with generic lists is a lot easier and fun than working with arrays. To convert an array to a generic list use the following code. (List of string in example) C# string stringSet = " a,b,c,d "; string [] stringArray = stringSet.Split( new char...
More Posts