Flurl - The elegant way to build URLs & set query params in .Net
A common task when calling web apis or resources from code is building a URL and adding the necessary query string and parameters.
The most common, naive and frequent code that we see to achieve this is :
var userId = 1;
var completed = true;
var som...
kumarashwinhubert.com3 min read