private void button3_Click(object sender, System.EventArgs e) //OK action
{
try
{
ds = new DataSet();
ds.Tables[0].Rows[0][0] = filepathtb1.Text;
ds.Tables[0].Rows[0][1] = filepathtb2.Text;
ds.Tables[0].Rows[0][2] = filepathtb3.Text;
ds.Tables[0].Rows[0][3] = filepathtb4.Text;
ds.WriteXml("Set.xml");
}
catch(Exception ex)
{

}
this.Close();
}这样写入dataset有没有问题,catch信息里面应该怎么写?