Mono.Xml.MiniParser.AttrListImpl.GetValue C# (CSharp) Méthode

GetValue() public méthode

public GetValue ( int i ) : string
i int
Résultat string
            public string GetValue(int i)
            {
                string res = null;
                if (i >= 0 && i < this.Length) {
                res = values[i] as string;
                }
                return res;
            }

Same methods

MiniParser.AttrListImpl::GetValue ( string name ) : string