摘要: decimal.op_Increment== ++decimal.op_Decrement== -- 阅读全文
posted @ 2010-04-21 22:26 greencolor 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: string message = "Hello World"; string result = message ?? "null"; // result = "Hello World";string message = null; string result = message ?? "It's null"; // result = "It's null" 阅读全文
posted @ 2010-04-21 14:01 greencolor 阅读(105) 评论(0) 推荐(0) 编辑