System.Runtime.Serialization.Plists.BinaryPlistDictionary.BinaryPlistDictionary C# (CSharp) Method

BinaryPlistDictionary() public method

Initializes a new instance of the BinaryPlistDictionary class.
public BinaryPlistDictionary ( IList objectTable, int size ) : System
objectTable IList A reference to the binary plist's object table.
size int The size of the dictionary.
return System
        public BinaryPlistDictionary(IList<BinaryPlistItem> objectTable, int size)
        {
            this.KeyReference = new List<int>(size);
            this.ObjectReference = new List<int>(size);
            this.ObjectTable = objectTable;
        }