Advertisement
Forage

Untitled

Aug 26th, 2011
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1.         tagList = playbin.GetVideoTags(0);
  2.        
  3.         if (tagList != null) {
  4.             Console.WriteLine ("Tag count: {0}?", tagList.Tags.Length);
  5.            
  6.             foreach(string tag in tagList.Tags) {
  7.                 Console.WriteLine ("Tag: {0}?", tag);
  8.             }
  9.            
  10.             tagList.Dispose();
  11.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement