我是C#/ OOP的新手,並且正在將現有的應用程序轉換爲.net 4.0框架。我的變量應該聲明爲什麼類型?
我的代碼如下:
Class abc
private IList<string[]> GetReportBatchList()
{
List<string[]> rowList = new List<string[]>();
SqlParameter[] prm = { new SqlParameter("@rpt_doc_type_id", SqlDbType.Int, 9) };
prm[0].Value = 101;
try
{
.....
.....
.....
}
return rowList;
}
class xyz
using abc;
Private Function GenerateReport()
Try
{
Dim rptBatchList As ??????
rptBatchList = GetReportBatchList()
While rptBatchList.Read()
......
......
......
}
catch
{
......
}
應該rptBatchList聲明爲何種類型?
'私有IList GetReportBatchList()'確定好像它有非常非常清晰的提示。 「IList 」的哪個部分讓你感到困惑? –
2011-06-03 10:21:41