I have a try catch that should catch an exception if the string has invalid characters for a Windows path.
try { Result = Path.GetFullPath(pathname); } catch (System.IO.IOException e) { CatchResult = (e); } But an exception is still being thrown, and the application crash's. Any ideas?