A persistent wrapper for an IList<(Of <(T>)>)
Namespace:
NHibernate.Collection.GenericAssembly: NHibernate (in NHibernate.dll)
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 |
JavaScript |
---|
|
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>)>)