У меня в конце кода
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
И вот на нее у меня ругается код пишет что
The type or namespace name 'IRestResponse' could not be found (are you missing a using directive or an assembly reference?)"
Не удалось найти тип или имя пространства имен 'IRestResponse' (отсутствует директива using или ссылка на сборку?)".
Что делать? Спасибо.
request.AddParameter("application/json", body, ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
И вот на нее у меня ругается код пишет что
The type or namespace name 'IRestResponse' could not be found (are you missing a using directive or an assembly reference?)"
Не удалось найти тип или имя пространства имен 'IRestResponse' (отсутствует директива using или ссылка на сборку?)".
Что делать? Спасибо.