2013年11月6日

摘要: 编译单个CS文件。1.编译 File.cs 以产生 File.exe: csc File.cs 2.编译 File.cs 以产生 File.dll: csc /target:library File.cs 3.编译 File.cs 并创建 My.exe: csc /out:My.exe File.cs 4.通过使用优化和定义 DEBUG 符号,编译当前目录中所有的 C# 文件。输出为 File2.exe: csc /define:DEBUG /optimize /out:File2.exe *.cs 5.编译当前目录中所有的 C# 文件,以产生 File2.dll 的调试版本。不显示任何徽标和 阅读全文
posted @ 2013-11-06 17:47 人生贵在坚持 阅读(1486) 评论(0) 推荐(0) 编辑
 
摘要: http://se.360.cn/v5/iecoretest.html该网站能有效检测您浏览器的内核,以及版本,操作系统。找到这个网址,是因为最近解决WebBrowser自动调节IE版本功能时发现的。效果图如下 阅读全文
posted @ 2013-11-06 15:37 人生贵在坚持 阅读(530) 评论(0) 推荐(0) 编辑
 
摘要: 1:加键 改值 Microsoft.Win32.RegistryKey Key = Microsoft.Win32.Registry.CurrentUser.CreateSubKey( @"Software\Microsoft\Internet Explorer\Main"); Key.SetValue( "Window Title" , value ); Key.Close(); 2:获取键值 Microsoft.Win32.RegistryKey Key = Microsoft.W... 阅读全文
posted @ 2013-11-06 15:29 人生贵在坚持 阅读(143) 评论(0) 推荐(0) 编辑