'Declaration
<DefaultMemberAttribute("Item")> <DebuggerTypeProxyAttribute(System.Collections.Generic.Mscorlib_CollectionDebugView`1)> <DebuggerDisplayAttribute("Count = {Count}")> Public Class RangeList(Of T As {New, IComparable(Of T), Struct}) Inherits System.Collections.Generic.List(Of Range(Of T))
[DefaultMember("Item")] [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)] [DebuggerDisplay("Count = {Count}")] public class RangeList<T> : System.Collections.Generic.List<Range<T>> where T: new(), IComparable<T>, struct
[DefaultMember("Item")] [DebuggerTypeProxy(System.Collections.Generic.Mscorlib_CollectionDebugView`1)] [DebuggerDisplay("Count = {Count}")] generic<typename T> public ref class RangeList : public System.Collections.Generic.List<Range<T>> where T: gcnew(), IComparable<T>, value class