美文网首页
读取txt地图文件

读取txt地图文件

作者: 蜥蜴君 | 来源:发表于2020-05-21 15:38 被阅读0次

    string path = Application.dataPath + "//" + "Resources" + "//" + "map.txt";

            if (!File.Exists(path))

            {

                return;

            }

     FileStream fs = new FileStream(path, FileMode.Open, FileAccess.Read);

    StreamReaderread=newStreamReader(fs,Encoding.Default);

    相关文章

      网友评论

          本文标题:读取txt地图文件

          本文链接:https://www.haomeiwen.com/subject/tpzzohtx.html