List _list; string _total,_cash,_change,_date;參數類型'System.Collections.Generic.List <WindowsFormsApplication8.receipt''比方法更難以訪問
public Form8(List<receipt> datasource, string total, string cash, string change, string date)
{
InitializeComponent();
_list = datasource;
_total = total;
_cash = cash;
_change = change;
_date = date;
}
在這裏,我得到了一個錯誤。
錯誤1可訪問性不一致:參數類型 'System.Collections.Generic.List' 比方法更少可訪問的「WindowsFormsApplication8.Form8.Form8(System.Collections.Generic.List,字符串,字符串,字符串,字符串) 「C:\用戶\ thush \文檔\的Visual Studio 2012 \項目\ WindowsFormsApplication8 \ WindowsFormsApplication8 \ Form8.cs 18 16 WindowsFormsApplication8
最有可能的'收據'類型是不公開的。公開。 – CodingYoshi