How can we encode a string using the URL standard (RFC 1738) in C #?
The following online tool converts strings using this standard http://www.freeformatter.com/url-encoder.html
An example of the string I want to convert is test(brackets) , and the encoded string should look like this:
test%28brackets%29
c # encoding url-encoding
rumi
source share