ActionResult参数中的ASP .NET搜索顺序

时间:2015-06-11 12:08:44

标签: c# asp.net .net

在ActionResult中,我们可以声明参数,ASP .NET将在整个项目中搜索这些字符串。

 public ActionResult Index(string name, string lastname)
    {
        return Content(name+" "+lastname);
    }

搜索的顺序是什么,首先是什么?

是否在搜索第一个匹配之前进行搜索?

0 个答案:

没有答案