Friday, October 4, 2013

Array lists

I'm not sure what your question is but here we go



//The way to create an array list... at least the way I'd recommend
var FileList = new List<string>();
//To add to that list
FileList.Add("filename1");
FileList.Add("filename2");




No comments:

Post a Comment