What is the Uri
class and what is its purpose and where should I use it?
Can not pass an object from it to a string variable see in the example:
String caminho = new Uri(@"c:\Windows");
Generate the following error:
Error 1 Can not implicitly convert type 'System.Uri' to 'string'
I read about that is used in strings , but I'm confused by that.