using System; using System.Collections.Generic; using System.Text; namespace P4API { public class P4TaggedResult : P4Result { internal P4TaggedResult() { } public System.Collections.Specialized.StringDictionary[] Tags { get { throw new System.NotImplementedException(); } } public string[] Infos { get { throw new System.NotImplementedException(); } } public System.Collections.Specialized.StringDictionary this[int Index] //Indexer { get { throw new System.NotImplementedException(); } } } }