using System; using System.Collections.Generic; using System.Text; namespace P4API { public class P4StringsResult : P4Result { internal P4StringsResult() { } public string[] Strings { get { throw new System.NotImplementedException(); } } public string this[string index] //indexer { get { throw new System.NotImplementedException(); } } } }