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

📄 uploadfilecollection.cs

📁 asp.net 大文件上传,带进度条的时时显示进度效果
💻 CS
字号:
using System;
using System.Collections;

namespace Webb.WAVE.Controls.Upload2
{
	/// <summary>
	/// Summary description for UploadFileCollection.
	/// </summary>
	public class UploadFileCollection:ArrayList
	{
		new UploadFile this[int i_index]
		{
			get{return base[i_index] as UploadFile;}
			set{base[i_index] = value;}			
		}
		public int Add(UploadFile value)
		{
			return base.Add (value);
		}

		public UploadFileCollection()
		{
			//
			// TODO: Add constructor logic here
			//
		}
	}
}

⌨️ 快捷键说明

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