コード例 #1
0
ファイル: Tests.cs プロジェクト: gitter-badger/libvideo
        // [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
            }
        }
コード例 #2
0
ファイル: Tests.cs プロジェクト: gitter-badger/libvideo
        // [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
        }