Can I speed up this query to retrieve all computers on the domain?
问题 I wrote a helper class to get all computers on a domain, but it's a tad bit slow. While there are 128 objects returned, I'd still like to speed it up. Any ideas? public class DomainBrowser { private const string Computer = "computer"; public string Domain { get; private set; } public DomainBrowser(string domain) { this.Domain = domain.ToLower(); } /// <summary> /// This method returns a list of the computer names available in the current domain. /// </summary> /// <returns></returns> public