Код файла с программой:
using System;
class test {
static void Main(){
Console.Write("Enter Path:");
var path = Console.ReadLine();
var file = new System.IO.StreamWriter(path, true);
var OutText = "test some text";
file.WriteLine(OutText);
file.Close();
}
}
Компиляция:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe .\1.cs
В результате в текущей папке сформируется экзешник