上一页 1 ··· 355 356 357 358 359 360 361 362 363 ··· 400 下一页
摘要: 1.使用命令来直接查找 假设有分支A和分支B,那么使用以下命令 【http://stackoverflow.com/questions/1549146/find-common-ancestor-of-two-branches】 git merge-base A B 就可以查看这2个分支的共同父节点 阅读全文
posted @ 2015-09-04 05:08 ChuckLu 阅读(4175) 评论(0) 推荐(0)
摘要: Three ways to do WCF instance management (Per call, Per session, and Single).IntroductionVery often we would like to control the way WCF service objec... 阅读全文
posted @ 2015-09-02 14:55 ChuckLu 阅读(250) 评论(0) 推荐(0)
摘要: http://www.codeproject.com/Articles/89858/WCF-Concurrency-Single-Multiple-and-Reentrant-andIntroduction and goalIn this article, we will concentrate o... 阅读全文
posted @ 2015-09-02 14:45 ChuckLu 阅读(419) 评论(0) 推荐(0)
摘要: 之前写的方法,使用try catch来处理如果能捕获异常就说明问题public bool CheckLegal() { double number; bool flag = true; try { ... 阅读全文
posted @ 2015-09-01 17:10 ChuckLu 阅读(1840) 评论(0) 推荐(0)
摘要: No, this doesn't exist. You have to remove the tab and re-add it when you want it. Or use a different (3rd-party) tab control. 使用TabControl中的TabPages属 阅读全文
posted @ 2015-09-01 14:44 ChuckLu 阅读(582) 评论(0) 推荐(0)
摘要: 以开源记牌器https://github.com/Epix37/Hearthstone-Deck-Tracker 为例,Hearthstone Deck Tracker项目中的后期生成事件命令行: if "$(ConfigurationName)" == "Release" ( rmdir /S / 阅读全文
posted @ 2015-08-31 08:49 ChuckLu 阅读(4970) 评论(1) 推荐(0)
摘要: using System;using System.Collections.ObjectModel;using System.Linq;namespace ConsoleApplication1{ class Program { private static void Ma... 阅读全文
posted @ 2015-08-30 16:01 ChuckLu 阅读(4388) 评论(0) 推荐(0)
摘要: git for windows 2.5 版本发布了,更新之后,使用git svn的时候,就出错git svn rebase Or git svn dcommitAfter a update git for windows 2.5,I encountered this problem.$ git sv... 阅读全文
posted @ 2015-08-29 03:43 ChuckLu 阅读(4091) 评论(0) 推荐(0)
摘要: 1.进入某一个目录 cd 2.列出当前目录下的所有文件和文件夹 dir 查看上层目录的内容dir ..\..\ 需要这里是 3.切换盘符目录 c:或f: 4.查看当前绝对路径 cd 或者 echo %cd% 5.加权限 icacls c:\ /setintegritylevel M 正斜杠 表示除法 阅读全文
posted @ 2015-08-29 01:28 ChuckLu 阅读(462) 评论(0) 推荐(0)
摘要: /// /// 坐标轴的最大步长 /// public double MajorStep { get { return axis.CalcIncrement; } set { axis.Incr... 阅读全文
posted @ 2015-08-28 17:19 ChuckLu 阅读(728) 评论(0) 推荐(0)
上一页 1 ··· 355 356 357 358 359 360 361 362 363 ··· 400 下一页