You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB
C#

/*
* C# Program to Illustrate StringWriter
*/
using System;
using System.IO;
using System.Text;
public class stringwrt
{
StringBuilder sb = new StringBuilder();
public stringwrt()
{
Writer();
}
public static void Main()
{
stringwrt srw = new stringwrt();
}
private void Writer()
{
StringWriter sw = new StringWriter(sb);
Console.WriteLine("STUDENT DETAILS : ");
Console.Write("Name :");
string name = Console.ReadLine();
sw.WriteLine("Name :" + name);
Console.Write("Department :");
string Department = Console.ReadLine();
sw.WriteLine("Department :" + Department);
Console.Write("College Name :");
string CollegeName = Console.ReadLine();
sw.WriteLine("College Name :" + CollegeName);
Console.WriteLine("Information Saved!");
Console.WriteLine();
sw.Flush();
sw.Close();
Console.ReadLine();
}
}
/*
STUDENT DETAILS :
Name : BOB
Department : IT
College Name : NIIT
Information Saved!