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

📄 filecollection.cs

📁 Upload Source code in temp folder
💻 CS
字号:
/* *************************************************
 * Development : Rajesh Lal(connectrajesh@hotmail.com)
 * Date: 04/15/2007
 * Company Info: www.csharptricks.com
 * See EULA.txt and Copyright.txt for additional information
 * **************************************************/
using System;
using System.Collections;
using System.IO;

namespace PenFlicksDemo
{
	/// <summary>
	/// Summary description for FileCollection.
	/// </summary>
	public class FileCollection : System.Collections.CollectionBase
	{
		public FileCollection()
		{
		}

		public FileInfo this[ int index ]  
		{
			get  
			{
				return( (FileInfo) List[index] );
			}
			set  
			{
				List[index] = value;
			}
		}

		public void Add(FileInfo aFileInfo)
		{
			List.Add(aFileInfo);
		}
	}
}

⌨️ 快捷键说明

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