?? uploadfilecollection.cs
字號(hào):
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
//
}
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -