public void TEST_GET_NETWORKSHARES() { DateTime start = DateTime.Now; foreach (string share in NetworkScanner.GetAllAvailableNetworkShares()) { Console.WriteLine(share); } Console.WriteLine("Took: " + (DateTime.Now - start).TotalMilliseconds + " milliseconds"); }