会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Vester Wong
博客园
首页
新随笔
联系
管理
订阅
2015年5月20日
码农们的自我保护体操
摘要: 时间长了,对颈椎健康非常不利!颈椎病非一日之寒导致,从现在起保护好自己的颈椎,才能远离颈椎病。想要远离颈椎困扰,每天坚持10分钟颈椎操,要健康就不要找借口了! 【颈椎操,10分钟,一起来】 这套颈椎操一共有十节,注意做动作时要慢慢来,不要用力过猛,不然会适得其反。 用左手掌来回摩擦颈部,口中默...
阅读全文
posted @ 2015-05-20 17:17 Vester
阅读(299)
评论(0)
推荐(0)
2013年12月27日
C# 类型初始化(Type initialization)
摘要: 这些天突然看到一些大虾门写的有关类型初始化的文章。那种感觉真叫跌宕起伏啊。博文地址如下,自己慢慢体会吧!起步:http://www.cnblogs.com/artech/archive/2008/11/01/1324280.html追加:http://www.cnblogs.com/anytao/archive/2008/11/02/must_net_23.html老外的文章:http://csharpindepth.com/Articles/General/Beforefieldinit.aspx http://msmvps.com/blogs/jon_skeet/archive/...
阅读全文
posted @ 2013-12-27 15:51 Vester
阅读(773)
评论(0)
推荐(0)
2013年7月11日
配置IIS Express,支持JSON
摘要: 方法有2种:1. 命令行 a. cd "iis express的安装目录" 例如:cdC:\Program Files (x86)\IIS Express b.appcmd set config /section:staticContent /+[fileExtension='.json',mimeType='application/x-javascript'] c.appcmd set config /section:handlers /+[name='JSON',path='*.json',verb=
阅读全文
posted @ 2013-07-11 16:26 Vester
阅读(1081)
评论(0)
推荐(0)
2013年6月21日
SynchronizationContext应用
摘要: 这个类的应用,官方的说明并不是很多,主要原因是因为微软又出了一些基于SynchronizationContext的类。比如:BackgroundWorker大家写程序时经常碰到子线程调用UI线程的方法来更新UI。这个时候大家会用到如下办法private void HandleSomeEvent(object sender, EventArgs e){ if(InvokeRequired) { BeginInvoke(new EventHandler(HandleSomeEvent), sender, e); } else { // Ev...
阅读全文
posted @ 2013-06-21 10:31 Vester
阅读(307)
评论(0)
推荐(0)
2013年5月18日
windows server 2008 r2 桌面体验 安装失败 系统尝试3次都失败 0x80070005错误
摘要: 解决办法很简单:1. 卸载Microsoft Security Essentials2. 安装 桌面体验3. 安装 Microsoft Security Essentials
阅读全文
posted @ 2013-05-18 15:12 Vester
阅读(865)
评论(0)
推荐(0)
2013年4月8日
Demo制作工具
摘要: Axure RP这个工具很好用的,好多大公司都在用他做前期demo设计!
阅读全文
posted @ 2013-04-08 10:27 Vester
阅读(399)
评论(0)
推荐(0)
2013年1月11日
C#生成连续的GUID
摘要: 1 using System.Runtime.InteropServices; 2 3 public class SequentialGuid 4 { 5 [System.Runtime.InteropServices.DllImport("Rpcrt4", CallingConvention = CallingConvention.StdCall, SetLastError = true)] 6 private static extern long UuidCreateSequential(ref System.Guid ptrGuid); 7 8 public...
阅读全文
posted @ 2013-01-11 12:33 Vester
阅读(682)
评论(0)
推荐(0)
2009年1月16日
写点什么作为开始?
摘要: 从业多年了,第一次感觉要写点什么,在自己的生涯中留下点痕迹。这些痕迹就是我财富,当然我也愿意跟大家一起共享我的财富。多多努力吧!
阅读全文
posted @ 2009-01-16 12:49 Vester
阅读(145)
评论(1)
推荐(0)
公告