C#
文章平均质量分 55
steven088
这个作者很懒,什么都没留下…
展开
-
TFS强制解除签出锁定
在 tfs 主机上,以命令行(cmd)方式操作。命令:C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\tf.exe语法:tf undo [/workspace:workspacename[;workspaceowner]] [/server:servername] [/recursive] itemspec [/no原创 2012-01-04 12:01:15 · 1310 阅读 · 0 评论 -
camelCase命名约定
camelCase 在英语中,依靠单词的大小写拼写复合词的做法,叫做“骆驼拼写法”(CamelCase)。比如,backColor这个复合词,color的第一个字母采用大写。 这种拼写法在正规的英语中是不允许的,但是在编程语言和商业活动中却大量使用。比如,sony公司的畅销游戏机PlayStation,play和station两个词的词首字母都是大写的。 它之所以原创 2012-01-04 12:00:41 · 19647 阅读 · 1 评论 -
C#变量类型
参考文献:http://book.csdn.net/bookfiles/864/10086426741.shtml类 型类 别后 缀示例/允许的值bool布尔无true 或 falseint, uint,long, u转载 2012-01-04 11:58:56 · 524 阅读 · 0 评论 -
是否正在 IDE 中运行
namespace System.Diagnostics{ public sealed class Debugger { // 摘要: // 获取一个值,它指示调试器是否已连接到进程。 // // 返回结果: // 如果调试器已连接,则为 true;否则为 fa原创 2012-02-01 11:21:00 · 536 阅读 · 0 评论 -
在VS的IDE的Debug中写一行
try { // Argument excepion handle when the target // itemssource can not accept the data // draggedTreeItem - e.g. different types collection.Insert(targetIndex, draggedItem);原创 2012-01-31 14:11:42 · 564 阅读 · 0 评论 -
WPF中找指定类型控件列表 (UIElementExtensions.cs)
using System;using System.Collections.Generic;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Ink;using System.Win原创 2011-12-28 10:43:29 · 3427 阅读 · 0 评论 -
LINQ 速查
一、筛选操作符Where根据谓词对源序列的内容进行筛选,类似于SQL中的where子句。1.简单where表达式使用扩展方法var query1 = CustomerList.Where(c => c.Country == “USA”);使用查询表达式语法query1 = from c in CustomerList where c.Country == “USA” sel原创 2011-12-28 10:36:58 · 1309 阅读 · 1 评论 -
ESQL 速查
ADO.NET Entity Framework esql 目录 1 esql的查询结果集ObjectQuery 11.1 ObjectQuery 11.2 ObjectQuery 11.3 ObjectQuery 12 esql的使用 22.1 it关键字 22原创 2011-12-28 10:37:34 · 4765 阅读 · 0 评论 -
C#的转义符
参考文献:http://book.csdn.net/bookfiles/864/10086426741.shtml转义符\转义序列包括标准的\字符,后跟一个u和一个4位十六进制值(例如,表3-5中x后面的4位数字)。 下面的字符串是等价的:"Karli\'s string.""Karli\u0027s string."表 3-5转转载 2012-01-04 11:59:58 · 890 阅读 · 0 评论