Baca Dataset Data Sistem

var dataset = new DataSet();

// If you have multiple tables you can find one by its name like so:
// var table = dataset.Tables["tableName"];
foreach (DataRow row in dataset.Tables[0].Rows)
{
	// You can find the columns by their names
    string columnvalue = row["Column1"].ToString();
}
Av3