Changes in new versions / C# 6.0

class Server {
    //before:
    private string host = "192.168.1.1";
    public string Host1 {
        get { return host; }
        set { host = value; }
    }

    //in version 6:
    public string Host2 { getset; } =
        "192.168.1.1";
}