又求助啦!!函数的返回类型问题
我想定义一个函数xxx,如下:
public xxx()
{
DataSet hlj_ds_product=new DataSet();
SqlDataAdapter hlj_da_product=new SqlDataAdapter("select...",hlj_connection);
hlj_da_product.Fill(hlj_ds_product,"News");
return hlj_ds_product.Tables["News"].DefaultView;
}
然后
hlj_dl_product.DataSource=xxx();
现在要问的是,把这个函数设成什么类型的,才能把dataset的值返出来????
急!!!!