



(if the attachment doesn't go through)Dictionary<string, string> Servers = new Dictionary<string, string>()
{
{ "USWest2", "54.193.168.4" },
{ "USWest3", "54.241.223.240"},
etc
};
and in private void ButtonX10_Click(object sender, EventArgs e), you could just put
{
string[] contents = File.ReadAllLines(yada yada);
contents[3] = "remoteHost= " + Servers[ComboBox1.Text];
File.WriteAllLines(yada yada);
}

