-7
這裏是沒有文件我想讀取和寫入在C#中的文件
static void Main(string[] args)
{
// BluetoothRadio.PrimaryRadio.Mode = RadioMode.Connectable;
BluetoothClient bc = new BluetoothClient();
BluetoothDeviceInfo[] devs = bc.DiscoverDevicesInRange();
foreach (BluetoothDeviceInfo d in devs)
{
System.Console.WriteLine(d.DeviceName);
}
System.Console.WriteLine("finish");
System.Console.ReadLine();
}
相反,我想那部分被寫入到一個文件行System.Console.WriteLine(d.DeviceName);
我的代碼。
之後,我需要循環該文件,併爲該文件中的每個設備名稱,我將在另一個文件中搜索它的相應輸出。關於如何循環和搜索文件的提示對於該部分就足夠了。
謝謝。
File.WriteAllText – Alex
https://msdn.microsoft.com/en-us/library/system.io.file.appendtext(v=vs.110).aspx – willaien
whao - 谷歌必須再次被破壞:) –