コード例 #1
0
        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");
        }