摘要: Environment 类可检索信息,如命令行参数、退出代码、环境变量设置、调用堆栈的内容、上次系统引导以来的时间,以及公共语言运行库的版本 Console.WriteLine("命令行: {0}", Environment.CommandLine); String[] arguments = Environment.GetCommandLineArgs(); Console.WriteLine("命令行参数的字符串数组: {0}", String.Join(", ", arguments)); Console.WriteLine(& 阅读全文
posted @ 2005-06-07 15:16 greystar 阅读(531) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Security;using System.Security.Principal;using System.Text;using System.Collections.Specialized;namespace SecurityDll{////// Class1 的摘要说明。public class Emp{ public Emp(){//进行权限检查,只有admin这个角色才可以调用System.Security.Permissions.PrincipalPermission perm = new System.Security.Permi 阅读全文
posted @ 2005-06-07 14:58 greystar 阅读(199) 评论(0) 推荐(0) 编辑