标签: c#
我正在ASP.NET Web API中实现Put方法。 如何使用quotes[id]访问对象?
Put
quotes[id]
public void Put(int id, [FromBody]Quote quote) { quotes[id] = quote; }