vs2010c# 独立打印调试工具 每次使用Visual Studio C#的Debug.WriteLine调试。个人调试信息与系统调试信息混杂在一起,难以区分。 CSharpTraceServer,与CSharpTraceDll应此出现。 使用方法: 1.CSharpTraceServer。打开CSharpTraceServer.e
aop相关开发包 内容包括: aopalliance.jar aspectj-1.8.9.jar aspectjrt.jar aspectjweaver.jar org.springframework.aop.jar
Excel大小写转换 Excel大小写转换 Sub Upper() Dim itarget As Range Set itarget = Selection For Each ran In itarget ran.Value = UCase(ran) Next End Sub Sub Lower() Dim itarge
共享服务例程 使用SvcHost.exe共享服务。0.关闭360等软件1.TestServiceGroup.reg重启(svchost识别)2.install.batstart.batstop.batuninstall.bat
c#使用命名管道实现打印调试 命名管道的实际用例。//服务端usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSyste
c# 反射实例 //c#反射实例usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSystem.Reflection;namespaceConsoleApplication1{classProgram
vs2010c独立打印调试 每次使用Visual Studio C#的Debug.WriteLine调试。个人调试信息与系统调试信息混杂在一起,难以区分。 CSharpTraceServer,与CSharpTraceDll应此出现。 使用方法: 1.CSharpTraceServer。打开CSharpTraceServer.e
cobjectdynamicvar的区别用例 // object, dynamic, var的区别用例 using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { cla