摘要:比如读取TXT中前100个字符。string fileFullName = txtPath.Text.Trim(); if (File.Exists(fileFullName)) { StreamReader srr = new StreamReader(fileFullName); char[] cc=new char[100]; srr.Read(cc,0,cc.Length); string tmp = new string(...
阅读全文
01 2013 档案