⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 baselist~1.vb

📁 大名鼎鼎的mono是.NET平台的跨平台(支持linux
💻 VB
字号:
' ' Visual Basic.Net Compiler' Copyright (C) 2004 - 2007 Rolf Bjarne Kvinge, RKvinge@novell.com' ' This library is free software; you can redistribute it and/or' modify it under the terms of the GNU Lesser General Public' License as published by the Free Software Foundation; either' version 2.1 of the License, or (at your option) any later version.' ' This library is distributed in the hope that it will be useful,' but WITHOUT ANY WARRANTY; without even the implied warranty of' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU' Lesser General Public License for more details.' ' You should have received a copy of the GNU Lesser General Public' License along with this library; if not, write to the Free Software' Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA' ''' <summary>''' Base class for lists of type List ::= Item | List "," Item''' </summary>''' <remarks></remarks>Public Class BaseList(Of T)    Inherits ParsedObject    Implements Generic.IEnumerable(Of T)    Private m_List As New Generic.List(Of T)    Public Overrides Function ResolveCode(ByVal Info As ResolveInfo) As Boolean        Return Helper.ResolveCodeCollection(m_List, Info)    End Function    Public Overrides Function ResolveTypeReferences() As Boolean        Return Helper.ResolveTypeReferencesCollection(m_List)    End Function    Function Add(ByVal Item As T) As T        m_List.Add(Item)        Return Item    End Function    Sub AddRange(ByVal List As Generic.IEnumerable(Of T))        For Each item As T In List            m_List.Add(item)        Next    End Sub    Overridable Function NewObject() As T        Throw New InternalException(Me)    End Function    Sub New(ByVal Parent As ParsedObject)        MyBase.new(Parent)    End Sub    Sub New(ByVal Parent As ParsedObject, ByVal ParamArray Objects() As T)        MyBase.new(Parent)        m_List.AddRange(Objects)    End Sub    Default ReadOnly Property Item(ByVal Index As Integer) As T        Get            Return DirectCast(m_List.Item(Index), T)        End Get    End Property    ReadOnly Property Count() As Integer        Get            Return m_List.Count        End Get    End Property    ReadOnly Property Length() As Integer        Get            Return m_List.Count        End Get    End Property    Public ReadOnly Property List() As Generic.List(Of T)        Get            Return m_List        End Get    End Property    Private Function GetEnumerator2() As System.Collections.IEnumerator Implements System.Collections.IEnumerable.GetEnumerator        Return m_List.GetEnumerator    End Function    Public Function GetEnumerator() As System.Collections.Generic.IEnumerator(Of T) Implements System.Collections.Generic.IEnumerable(Of T).GetEnumerator        Return m_List.GetEnumerator    End FunctionEnd Class

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -