System.Xml.NameTable.Entry.Entry C# (CSharp) Méthode

Entry() private méthode

private Entry ( string str, int hashCode, Entry next ) : System
str string
hashCode int
next Entry
Résultat System
            internal Entry( string str, int hashCode, Entry next ) {
                this.str = str;
                this.hashCode = hashCode;
                this.next = next;
            }
        }
NameTable.Entry