05 2008 档案
摘要:// Load the combo.this.LoadEnumCombo( this.ultraComboEditorDataErrorSupport, typeof( SupportDataErrorInfo ) );private void LoadEnumCombo( UltraComboEditor ultraCombo, Type enumType ) { ...
阅读全文
摘要:静态构造函数的理解 Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> class Program { static void Main(string[] args) { Cacu...
阅读全文
摘要:public long GetDirectoryLength(string dirPath){ if(!Directory.Exists(dirPath))return 0; long len=0; DirectoryInfo di=new DirectoryInfo(dirPath); foreach(FileInfo fi in di.GetFiles()){ ...
阅读全文