A
A
almenovr2021-12-02 18:10:48
C++ / C#
almenovr, 2021-12-02 18:10:48

How to add bool parameter to NameValueCollection?

Api requires you to pass a bool parameter.
It doesn't work like this:

var pars = new NameValueCollection();
pars.Add("название параметра", true);

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Vasily Bannikov, 2021-12-02
@vabka

Use Dictionary<string, T>
Well or write like this:

var pars = new NameValueCollection();
pars.Add("название параметра", true.ToString());

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question