测试一
代码如下 | 复制代码 |
public ActionResult Index(string arg) { if (arg == null) { return Content("null"); } else if (arg == "") { return Content("empty"); } else { return Content(arg); } } |
测试二
代码如下 | 复制代码 |
public ActionResult Index(int? arg) |
说明:第2个null应是empty转化的结果。
测试三
代码如下 | 复制代码 |
public ActionResult Index(Test test) |