Exemple #1
0
 internal SortedSerializableObjectPool(Serializer owner, IList <Type> registeredTypes)
 {
     this._owner             = owner;
     this._target            = owner.Target;
     this._comparer          = new Comparer(System.Globalization.CultureInfo.CurrentCulture);
     this._persistentObjects = new FastSearchDictionary <Guid, GenericWeakReference <ISerializableObject> >(_comparer);
 }
 internal SortedSerializableObjectPool(Serializer owner, IList<Type> registeredTypes)
 {
     this._owner = owner;
     this._target = owner.Target;
     this._comparer = new Comparer(System.Globalization.CultureInfo.CurrentCulture);
     this._persistentObjects = new FastSearchDictionary<Guid,GenericWeakReference<ISerializableObject>>(_comparer);
 }