System.Net.Http: missing from namespace? (using .net 4.5)

后端 未结 16 2326
我寻月下人不归
我寻月下人不归 2020-11-27 17:57

TL; DR: I\'m new to this language and have no idea what I\'m doing

here is my class so far:

using System;
using System.Collections.Generic;
using Sys         


        
16条回答
  •  臣服心动
    2020-11-27 18:17

    With the Nuget Package Manager install Microsoft.AspNet.WebApi.Core.

    After this:

    using System.Web.Http;
    

    or if you use VB

    imports System.Web.Http

提交回复
热议问题