Mega Code Archive

 
Categories / C# / Network
 

Initializes a new instance of the UriBuilder class with the specified scheme, host, and port

using System; public class MainClass{    public static void Main(){     UriBuilder myUri = new UriBuilder("http","www.google.com",8080);         } }