A persistent wrapper for an IList<(Of <(<'T>)>)>

Namespace: NHibernate.Collection.Generic
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
[SerializableAttribute]
public class PersistentGenericList<T> : PersistentList, 
	IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Visual Basic
<SerializableAttribute> _
Public Class PersistentGenericList(Of T) _
	Inherits PersistentList _
	Implements IList(Of T), ICollection(Of T),  _
	IEnumerable(Of T), IEnumerable
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class PersistentGenericList : public PersistentList, 
	IList<T>, ICollection<T>, IEnumerable<T>, 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..::..PersistentList
      NHibernate.Collection.Generic..::..PersistentGenericList<(Of <(<'T>)>)>

See Also