摘要:
/// <summary> /// 获取当前域的计算机列表 /// </summary> /// <returns></returns> public List<LocalMachine> GetAllLocalMachines() { //局域网计算机列表 List<LocalMachine> machineList = new List<LocalMachine>(); Process p = new Process(); p.StartInfo.FileName = "net"; p. 阅读全文