When i compile I am getting this error (c#):
'Google.YouTube.Video.Tags' is not supported by the language
Video video = new Video();
video.Title = txtTitle.Text;
video.Tags.Add(new MediaCategory(cmbCat.SelectedItem.ToString(),YouTubeNameTable.CategorySchema ));
What is the reason for this error ?
For Google API v3, the correct parameter for video.Tags.Add is a string parameter. MediaCategory is not a valid data type for the Add Method of the Tags property.
or
See Google's sample at UploadVideo.cs