1
Answer

C# Corner Support for Mono

Photo of Mahesh Chand

Mahesh Chand

13y
1.6k
1
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
Photo of Vulpes
NA 98.3k 1.5m 12y
This should do it:

      string sourcePath = @"C:\Vulpes\xyz.xml";
      string destPath =  @"h:\darma\" + Path.GetFileName(sourcePath);
      System.IO.File.Copy(sourcePath, destPath);
Accepted