11 2012 档案

C#多线程备忘
摘要:1.以前一直在用多线程,但对于多个线程完成一个任务时,如何汇合到主线程不太清楚,有时竟傻到去记录每个线程的状态来轮询等待(此处不讨论线程池),下面我写了一个例子,虽然和自己预想的结果有点出入,但确定实现了这个功能,就是Thread.Join方法,代码如下: using System; using S 阅读全文

posted @ 2012-11-30 14:01 空明流光 阅读(283) 评论(0) 推荐(0) 编辑

c#通过编码检查是否有PendingChanges没有签入
摘要:using Microsoft.TeamFoundation.Client;using Microsoft.TeamFoundation.VersionControl.Client;var pendingList = new List<KeyValuePair<string, string>>(); foreach (var ser in RegisteredTfsConnections.GetProjectCollections()) { var server = RegisteredTfsConnections.Ge... 阅读全文

posted @ 2012-11-28 16:45 空明流光 阅读(675) 评论(2) 推荐(0) 编辑

C#代码控制tfs
摘要:using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.VersionControl.Client; var workspaceInfo = Workstation.Current.GetLocalWorkspaceInfo(fileName);var server = new TfsTeamP 阅读全文

posted @ 2012-11-28 10:16 空明流光 阅读(1166) 评论(0) 推荐(0) 编辑

移动改名正在运行的程序
摘要:MoveFileEx可以移动正在运行的程序文件,当然也可以改名,只是不能移动到不同的驱动器里罢了,这个函数相当强大,还有可以在下次开机时删除的功能。Mark一下,备忘。 阅读全文

posted @ 2012-11-15 13:06 空明流光 阅读(241) 评论(0) 推荐(0) 编辑

C# 注册热键
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.Runtime.InteropServices;namespace ConsoleTest{ public static class HotKeyManager { public static event EventHandler<HotKeyEventArgs> HotKeyPre... 阅读全文

posted @ 2012-11-14 16:11 空明流光 阅读(290) 评论(0) 推荐(0) 编辑

从Windows Service 启动一个cmd窗口
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using Microsoft.VisualBasic; using Syste 阅读全文

posted @ 2012-11-14 15:55 空明流光 阅读(712) 评论(0) 推荐(0) 编辑

读取当前配置文件的方法
摘要:var config = ConfigurationManager.OpenExeConfiguration(Assembly.GetAssembly(typeof(ProjectInstaller)).Location); this.serviceInstaller1.ServiceName = config.AppSettings.Settings["ServiceName"].Value;我发现在有些情况下读取应用程序的配置文件会出现ConfigurationManager.AppSettings读取不到的情况,而用上面的代码却可以。比如Windows Servic. 阅读全文

posted @ 2012-11-08 17:12 空明流光 阅读(299) 评论(1) 推荐(0) 编辑

导航