0
我正在讀取活動導演用戶信息,而不是我想要保存到csv文件。將LDAP搜索結果保存在csv
DirectoryEntry de=new DirectoryEntry("LDAP://xxxx.com, xxxx, xxxx, AutentniciationTypes.Secure");
DirectorySearcher ds=new DirectorySearcher(de);
ds.Filter="(&(objectClass=user)(I="+ "xxxx"));
SearchhResultCollection results=ds.FindAll();
接下來我想將「結果」保存到csv文件。請讓我知道這樣做。 感謝