2015年10月29日

C#操作符??和?:

摘要: 先看如下代码:stringstrParam = Request.Params["param"];if( strParam== null){strParam= "";}stringstrParam=Request.Params["param"] == null? "": Request.Params[... 阅读全文

posted @ 2015-10-29 10:57 大西瓜3721 阅读(172) 评论(0) 推荐(0)

导航