Showing posts with label Code. Show all posts
Showing posts with label Code. Show all posts

Monday, December 15, 2008

Sort StringCollection ArrayList

This is the call you need to make to sort a StringCollection.

ArrayList.Adapter(myStringList).Sort();

Friday, November 21, 2008

NHibernate Tutorial Videos

I'm just starting to learn NHibernate and needed to get up to speed quickly. The Summer of NHibernate allowed me to do this. Granted the videos are long but the information presented is all crucial and makes it easy to get up to speed on NHibernate.

Monday, September 8, 2008

Convert ArrayList to string[] array

So simple, yet I didn't know it.

VB: stringArray as string[] = arrayList.ToArray(typeof(string)) as string[];

C#: string[] stringArray = (string[])arrayList.ToArray(typeof(string));