我可以使用此代码下载youtube视频
var youTube = YouTube.Default; // starting point for YouTube actions
var video = youTube.GetVideo(link); // gets a Video object with info about the video
File.WriteAllBytes(@"C:\" + video.FullName, video.GetBytes());
但是我需要下载进度在进度条上显示。 我该怎么办?