목록C# (1)
つ⋅⌄⋅)づ⌁⌁도움⌁⌁⋆

private void button1_Click(object sender, EventArgs e) { //string NicListResult = ""; //NIC : Network Interfece Card List NicName = new List(); foreach (ICaptureDevice Temp in CaptureDeviceList.Instance) { string[] arrTemp = Temp.ToString().Split('\n'); //한줄씩 잘라서 배열로 만듬 NicName.Add(arrTemp[1].Substring("FriendlyName: ".Length)); //그중 FriendlyName 찾아서 자름 //NicListResult += (arrTemp[1].Substring("..
카테고리 없음
2020. 8. 26. 12:49