C# 常用函數功能

 C#寫入txt文本行

            StreamWriter writer = new StreamWriter("C:\\aaa.txt");
            writer.Write(string.Concat("aaa", Environment.NewLine));
            writer.Write(string.Concat("bbb", Environment.NewLine));
            writer.Close();

C#獲取當前目錄

System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章