Maintains the top level collection of Kerbal data objects.
Works similar to a dictionary however it does not implement IDictionary in order to restrict usage.
It is important to note that unlike an IDictionary implementation this class will accept a call to the Add method
even if another value with the same name already exists. The previous value will be overwritten by the latest addition to the
list.
Inheritance Hierarchy
KerbalData StorableObjects T
Namespace: KerbalData
Assembly: KerbalData (in KerbalData.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public class StorableObjects<T> : IStorableObjects where T : class, new(), IStorable
Type Parameters
- T
- model type being managed
See Also