maybe this is a stupid question, but I would like to know why this happend?
I'm creating a dictionary as follows :
new Dictionary<string, object>(){{ "latestVersion", true }}
but when i trying to get the value to send as queryString parameters with this :
var x = queryParameters.Select(x => x.Key + "=" + x.Value);
the result is : "latestVersion=True"
Why is changing the value from true to True, as the services is expecting a boolean value is failing.