I have a controller that receives the parameter t
, but inside the function, It won't work with name type
for the variable, is it possible like the example:
public ActionResult Find(int t as type = 0){
if(type == 0)
return NotFound();
//code here
return View();
}