//	DataSetł́AProductse[uƍŏ̍s̏i̎擾B
DataTable products = dataSet.Tables["Products"];
string productName = (string)products.Rows[0]["ProductRow"];

//	^tDataSetł́AProductse[uƍŏ̍s̏i̎擾B
TypedDataSet.ProductsDataTable products = typedDataSet.Products;
string productName = products[0].ProductName;
