System.Xml.NameTable.Entry.Entry C# (CSharp) Метод

Entry() приватный Метод

private Entry ( string str, int hashCode, Entry next ) : System
str string
hashCode int
next Entry
Результат System
            internal Entry( string str, int hashCode, Entry next ) {
                this.str = str;
                this.hashCode = hashCode;
                this.next = next;
            }
        }
NameTable.Entry