
.net
kaqi072821
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C# reflection
Sample code: object.GetType().GetProperties();property.GetValue(request, null);targetProperty.SetValue(object, value, null);Type listType = typeof(List<>); //If the property ...原创 2012-01-10 18:26:00 · 179 阅读 · 0 评论 -
How to set hotkey in resharper for "content assist " and unit test
The default hot key Ctrl+space is used by switch input method. So we need to reset it. Menu-->tools-->options-->Environment-->Keyboard-->"Show commands containing" Choose ReS...原创 2012-01-10 18:38:55 · 198 阅读 · 0 评论 -
IIS debugview
http://tedgustaf.com/en/blog/2011/5/use-debugview-to-view-debug-output-from-asp-net-web-application/原创 2011-11-30 09:40:53 · 130 阅读 · 0 评论 -
c# regular expression reference
Cheat sheet for C# regular expressions metacharacters, operators, quantifiers etc (?i) within the pattern begins case-insensitive matching, (?-i) ends it. Character ...原创 2012-02-26 15:09:57 · 136 阅读 · 0 评论 -
c#读取文件目录path
private static string GetFullName() { var current_dir = Path.GetDirectoryName(new Uri(Assembly.GetCallingAssembly().CodeBase).LocalPath); return ...原创 2012-07-30 20:07:40 · 138 阅读 · 0 评论