Delete File By Visual Studio .Net Farmworke with C# How to delete File using C#|C++ on Visual Studio
On This Video we learn how to delete a File Form System by using C # on Visual Studio .net Farmworke Window Application.
Fast Add
using System.IO;
Then add 
String str = C "C \ User \ exmaple.txt";
The @ tell get the File Form PC where you set location 
Then add 
File.Delete (str); 
The str is Your String file location 
Now you can successful Delete the File Form pc



