C# 程序员参考--命令行参数教程
摘要:
示例 1 本示例演示如何输出命令行参数.// cmdline1.cs// arguments: A B Cusing System;public class CommandLine{ public static void Main( string[] args ) { // The Length property is used to obtain the ... 阅读全文
posted @ 2006-03-15 15:44 罗建平 阅读(275) 评论(0) 推荐(0) 编辑