Its quite annoying.
Example:
private const string someUrl = "http://foo.com";
I don't want the text to be turned into a hyperlink in the code editor.
Any ideas how to turn this off?
Its quite annoying.
Example:
private const string someUrl = "http://foo.com";
I don't want the text to be turned into a hyperlink in the code editor.
Any ideas how to turn this off?
I realize this is a somewhat dated question but when looking for a solution to programmatically update the date in a URL I was sending requests to, which VS2019 turning the string into a hyperlink was breaking, I just concatenated the "https://" with the rest of the URL and was able to use the $@"string" to achieve what I wanted to do. No need to toggle options or add extensions.
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://" +
$@"url.com/startDate={DateTime.Now.ToString("yyyy-MM-dd")}");