A persistent wrapper for an IList<(Of T>)
Namespace: NHibernate.Collection.Generic
Assembly: NHibernate (in NHibernate)
Version: 1.2.0.4000
Syntax
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class PersistentGenericList(Of T) _ Inherits AbstractPersistentCollection _ Implements IList(Of T), ICollection(Of T), IEnumerable(Of T), IList, ICollection, IEnumerable |
| C# |
|---|
[SerializableAttribute] public class PersistentGenericList<T> : AbstractPersistentCollection, IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable |
| Visual C++ |
|---|
[SerializableAttribute] generic<typename T> public ref class PersistentGenericList : public AbstractPersistentCollection, IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable |
Type Parameters
- T
- The type of the element the list should hold.
Remarks
The underlying collection used is a List<(Of T>)
Inheritance Hierarchy
System.Object
NHibernate.Collection.AbstractPersistentCollection
NHibernate.Collection.Generic.PersistentGenericList<(Of T>)
NHibernate.Collection.AbstractPersistentCollection
NHibernate.Collection.Generic.PersistentGenericList<(Of T>)