C# Corner Support for Mono
So, I am not really sure how to reach Migual and the Mono team but we (or at least I personally) do support Mono development and the team. If anything we can do to help out Mono team, I am all ears.
What do you think?
Answers (1)
0
This should do it:
string sourcePath = @"C:\Vulpes\xyz.xml";
string destPath = @"h:\darma\" + Path.GetFileName(sourcePath);
System.IO.File.Copy(sourcePath, destPath);
Accepted