OfficePoint
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));
1 comment:
electronic signature FAQ
February 3, 2015 at 8:02 AM
It's wonderful that you devote time to articles like this where so many people can truly benefit.
Reply
Delete
Replies
Reply
Add comment
Load more...
‹
›
Home
View web version
It's wonderful that you devote time to articles like this where so many people can truly benefit.
ReplyDelete