摘要:
静态构造函数的理解 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()){ ... 阅读全文