0

我正在替换旧版 Web 服务的控制器中编写操作。问题是我需要使用 C# 关键字 (ref) 作为参数。下面的代码无法编译,因为我使用的是保留字 ref。那么如何设置 WebApi Routing 来处理这个问题呢?

例子:

public class MyController : BaseController
{
    [ActionName("RedirectToItem")]
    [HttpGet]
    public HttpResponseMessage RedirectToItem(int ref)
    {
         // Do stuff...
    }
}

谢谢

4

1 回答 1

5

您可以@ref在方法定义中使用来转义关键字并避免关键字冲突。

于 2013-04-12T01:15:31.540 回答