System.Collections.Specialized.OrderedDictionary.OrderedDictionary C# (CSharp) Method

OrderedDictionary() protected method

protected OrderedDictionary ( SerializationInfo info, StreamingContext context ) : System.Diagnostics
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System.Diagnostics
        protected OrderedDictionary(SerializationInfo info, StreamingContext context)
        {
            // We can't do anything with the keys and values until the entire graph has been deserialized
            // and getting Counts and objects won't fail.  For the time being, we'll just cache this.  
            // The graph is not valid until OnDeserialization has been called.
            _siInfo = info;
        }

Same methods

OrderedDictionary::OrderedDictionary ( )
OrderedDictionary::OrderedDictionary ( System comparer )
OrderedDictionary::OrderedDictionary ( System info, System context )
OrderedDictionary::OrderedDictionary ( int capacity )
OrderedDictionary::OrderedDictionary ( int capacity, System comparer )
OrderedDictionary::OrderedDictionary ( ) : System.Diagnostics
OrderedDictionary::OrderedDictionary ( IEqualityComparer comparer ) : System.Diagnostics
OrderedDictionary::OrderedDictionary ( OrderedDictionary dictionary ) : System.Diagnostics
OrderedDictionary::OrderedDictionary ( int capacity ) : System.Diagnostics
OrderedDictionary::OrderedDictionary ( int capacity, IEqualityComparer comparer ) : System.Diagnostics