Skip to content

Instantly share code, notes, and snippets.

@jindeveloper
Created October 31, 2022 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jindeveloper/9eeea3e1fdf623be680cf06c9919aabc to your computer and use it in GitHub Desktop.
Save jindeveloper/9eeea3e1fdf623be680cf06c9919aabc to your computer and use it in GitHub Desktop.
using System;
var myUrl = new MyURL();
//prints out https://localhost:8080/myCustomer
Console.WriteLine($"{myUrl}");
return 0;
public class MyURL
{
private string protocol = "https";
private string host = "localhost";
private string port = "8080";
private string tenant = "myCustomer";
public override string ToString() => $"{protocol}://{host}:{port}/{tenant}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment