Exemplo n.º 1
0
        // [TestCase]
        public void YouTube_DownloadMany()
        {
            // DISABLE THIS TEST IF YOU DON'T NEED IT.

            var service = new YouTubeService();

            var arrays = service.DownloadMany(YouTubeUri);

            foreach (var array in arrays)
            {
                ;                          // synchronous DownloadMany may use yield
            }
        }
Exemplo n.º 2
0
        // [TestCase]
        public void YouTube_DownloadMany()
        {
            // DISABLE THIS TEST IF YOU DON'T NEED IT.

            var service = new YouTubeService();

            var arrays = service.DownloadMany(YouTubeUri);

            foreach (var array in arrays); // synchronous DownloadMany may use yield
        }