File creation
In this chapter you will learn:
Creating Files
using System;// j a v a 2 s. com
using System.IO;
public class MainClass
{
public static void Main()
{
FileInfo MyFile = new FileInfo(@"c:\Test.txt");
MyFile.Create();
}
}
Next chapter...
What you will learn in the next chapter:
Home » C# Tutorial » File, Path