using System;
using System.Data.SqlClient;
namespace Test1
{
class Program
{
static void Main(string[] args)
{
using (StreamReader rd = new StreamReader("D:\\txt.txt"))
{
String Value = rd.ReadToEnd();
Console.WriteLine(Value);
}
Console.ReadLine();
}
}
}