Код: Выделить всё
{
"answers": ["Apple", "Banana", "Orange", "Mango"]
}
Код: Выделить всё
HttpContent content = new FormUrlEncodedContent(new[]
{
new KeyValuePair("answers", model.Answers.ToList())
});
HttpResponseMessage responseMessage = client.PostAsync("verification-questions", content).Result;
невозможно преобразовать форму system.collections.generic.list в строку[ ]
Пожалуйста, помогите мне. Спасибо.
Подробнее здесь: https://stackoverflow.com/questions/757 ... sp-net-mvc