I am creating an application that takes input from user and save it permanently in form of table.
Console.Write(\"\\n\\tEnter roll no\\n\\t\"); v= Conv
Refer to System.IO.File
And this may be a quick help:
using System; public class Test { public static void Main() { String Str = ""; for(int i =0;i<10;i++) { Str += i.ToString(); } Console.WriteLine(Str); System.IO.File.WriteAllText(@"C:\SaveInfo.Txt",Str); } }