IT
摘要: 一、创建目录列表 下面的代码示例演示如何使用 I/O 类来创建目录中具有“.exe”扩展名的所有文件的列表。using System;using System.IO;class DirectoryLister{ public static void Main(String[] args) { string path = "."; if (args.Length > ... 阅读全文
posted @ 2010-06-24 10:28 liufei 阅读(365) 评论(0) 推荐(1) 编辑