1

为什么智能感知在 vb.net 中没有显示某些方法?

例如,System.Net.Http 中的 HttpRequestMessageExtensions 类根本没有显示。

这对 c# 没问题

public HttpResponseMessage GetProduct(int id)
{
    Product item = repository.Get(id);

    if (item == null)
    {
        var message = string.Format("Product with id = {0} not found", id);
        var err = new HttpError(message);
        err["error_sub_code"] = 42;
        return Request.CreateErrorResponse(HttpStatusCode.NotFound, err);
    }
    else
    {
         return Request.CreateResponse(HttpStatusCode.OK, item);
    }
}

谢谢

凯文

4

0 回答 0