摘要:
1.??可能是一个被遗忘的运算符,很少看到有人用它,它的用法很简单却很实用:variable ?? defaultValue相当于variable == null ? defaultValue : variable意思是为null 的时候等于什么值有了它,一行便能搞定Lazy Evaluation了://定义一个全局的方法//获取服务单ID private string getServicesId { get { return (string)Request.Params["servicesId"] ?? ""; //相当于三元运算符 //相当于ret. 阅读全文
posted @ 2013-03-28 23:17 Hamilton Tan 阅读(131) 评论(0) 推荐(0) 编辑