79176652

Date: 2024-11-11 07:00:24
Score: 0.5
Natty:
Report link

Another option: ToString() the existing Uri with a query string and put it in the QueryHelpers.AddQueryString method.

completed_uri = new Uri(
    QueryHelpers.AddQueryString(completed_uri.ToString(), new Dictionary<string, string> {
        { "pageToken", pageToken}
})
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: heyyy