我的库YoutubeExtractor C#有问题。 我为iOS开发,问题是当我尝试创建一个新的变量VideoDownloader Visual Studio找不到类型。
我认为问题在于我无法使用此库编写文件!
有人有任何想法来解决这个问题吗?
partial void UIButton220_TouchUpInside(UIButton sender)
{
IEnumerable < VideoInfo > videos= DownloadUrlResolver.GetDownloadUrls(url.Text);
VideoInfo video = videos.First(p => p.VideoType == VideoType.Mp4 && p.Resolution == Convert.ToInt32(cboResolution.TextInputMode));
if(video.RequiresDecryption)
DownloadUrlResolver.DecryptDownloadUrl(video);
//视觉工作室“VideoDownloader”无法识别
VideoDownloader downloader = new VideoDownloader(video, Path.Combine(Application.StartupPath + "\\", video.Title + video.VideoExtension)); }
答案 0 :(得分:1)
您可以使用 ildasm 查看dll包含的文件,您可以在select ROW_NUMBER() over(order by sales desc) id, sales from yourtable order by sales desc --id is order and sale in desc order
找到它。如果已安装Visual Studio。
在分析 YoutubeExtractor nuget dll文件后,我们将通过以下图片看到这些文件:
它不包含名为C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.6.1 Tools
的类。但是在构建从https://github.com/flagbug/YoutubeExtractor下载的项目后,我们可以在dll中找到它:
这是第三方图书馆的问题。您可以尝试使用其他库来执行此操作。或者我们需要等到作者修复它。