ArrayList.Adapter(myStringList).Sort();
Showing posts with label Code. Show all posts
Showing posts with label Code. Show all posts
Monday, December 15, 2008
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));
VB: stringArray as string[] = arrayList.ToArray(typeof(string)) as string[];
C#: string[] stringArray = (string[])arrayList.ToArray(typeof(string));
Subscribe to:
Posts (Atom)