using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.CodeDom;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
StreamReader fs = new StreamReader("c:\\xin.txt",Encoding.GetEncoding("gb2312"));
StreamReader f = File.OpenText("C:\\xin.txt");
string s = fs.ReadLine();
string t = f.ReadLine();
while (s != null)
{
Console.WriteLine(s);
Console.WriteLine(t);
s = fs.ReadLine();
t = f.ReadLine();
}
fs.Close();
Console.ReadKey();
}
}
}