this.plan2.SelectedValue = "1";//Un String como value
(System.Convert.ToInt32(this.plan2.SelectedIndex= 1)).ToString();//Valores Enteros
Por si queres setear el valor a cero, pues se me ocurren dos formas:
//1. Con el SelectedIndex:
(System.Convert.ToInt32(this.plan2.SelectedIndex= 0)).ToString();
//2. Con el SelectedValue:
this.plan2.SelectedValue = "0";
Ojalá te sirva....