What is the correct to format a string as a URL?
i.e. 'google.com' becomes 'http://www.google.com' and 'www.stackoverflow.com' becomes 'http://www.stackoverflow.com.'
I imagine it is something using the Uriclass but from what I can tell, new Uri(mystring).AbsoluteUri doesn't 'format' the string.
website.comtowww.website.com; they may be two different things. – Andrew Barber♦ Jan 8 at 21:37http://www.google.comis technically correct, and when you just typegoogle.cominto your browser thehttp://www.added when it appears as thoughgoogle.comdoesn't exist – Sam I am Jan 8 at 21:39http://and Google's servers themselves are returning a redirect telling the browser to requestwww.google.com. – iamnotmaynard Jan 8 at 21:42