Mono.Xml.MiniParser.AttrListImpl.GetName C# (CSharp) Method

GetName() public method

public GetName ( int i ) : string
i int
return string
            public string GetName(int i)
            {
                string res = null;
                if (i >= 0 && i < this.Length) {
                res = names[i] as string;
                }
                return res;
            }