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

📄 iextendedlist.cs

📁 c#源代码
💻 CS
字号:
/*
 * Created by SharpDevelop.
 * User: Forstmeier Helmut
 * Date: 04.08.2005
 * Time: 09:06
 * 
 * To change this template use Tools | Options | Coding | Edit Standard Headers.
 */
 using System;
 using System.Collections;
 
 namespace SharpReportCore {
 	
 	
 	public interface IExtendedList{
 		
 		///<summary>
 		/// Build the Hash/IndexList we need for indexing the DataSource
 		/// </summary>
 		void BuildHashList (IList list);
 		
 		/// <summary>
 		/// This List is used as an Index to the DataSource
 		/// ListItems are added by derived Classes
 		/// </summary>
 		IList IndexList{
 			get;
 		}
 		
 		/// <summary>
 		/// returns the Name of the <see cref="ExtendedListArray"></see>
 		/// </summary>
 		 string Name {
 			get;
 		}
 		
 		///<summary>
 		/// CurrentPosition in <see cref="SharpArrayList"></see>
 		/// </summary>
 		int CurrentPosition {
 			get;set;
 		}
 	}
 }
 

⌨️ 快捷键说明

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