using System; using System.Collections.Generic; using System.Text; using System.IO; using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System.Collections; using System.Data; using System.Data.SqlClient; using Common; using System.Threading; nam
今天在学图的算法做测试是,需要读取文本文件中的点坐标,本来很简单的事情,折腾了半天,记录一下找到的一种简单粗暴的解决方法,以便以后查看. 第一种方法 : StringReader string line = ""; using (StreamReader sr = new StreamReader("graph.txt")) // 读取文件所在路径 { while (!sr.EndOfStream) // 判读是否读完 { line = sr.ReadLine();