Rocket Commander Tutorials on Coding4Fun- April 20, 2006 The source code and tutorials for the Rocket Commander game are available in this MSDN Coding4Fun section!http://blogs.msdn.com/markda/archive/2006/04/20/580098.aspx Directory.GetFiles and search patterns- April 20, 2006 System.IO.Directory.GetFiles(string,string) enables you to provide a search pattern as the second argument. I have a list of file extensions that I need to search for and discovered two issues with this method. 1. The second argument only accepts a single search pattern string, so I used the following code to resolve this: List<string> _searchPatternList = new List<string>(); ... List<string>..http://blogs.msdn.com/markda/archive/2006/04/20/580075.aspx |