Initializes a new instance of the UriBuilder class with the specified scheme and host.
using System; public class MainClass{ public static void Main(){ UriBuilder myUri = new UriBuilder("http","www.google.com"); } }