错误1可访问性不一致:参数类型

时间:2017-11-24 09:08:50

标签: c# reportviewer

我一直在: -

  

错误1可访问性不一致:参数类型' System.Collections.Generic.List'比方法

更难以获取

我不知道出了什么问题,请帮忙

List<receipt> _list;
        string _total, _cash, _change, _date;

        public Form8(List<receipt> datasource, string total, string cash, string change, string date)
        {
            InitializeComponent();
            _list = datasource;
            _total = total;
            _cash = cash;
            _change = change;
            _date = date;
        }



   class receipt
    {
        public int id { get; set; }
        public string productname { get; set; }
        public string type { get; set; }
        public int quantity { get; set; }
        public double price { get; set; }
        public string Total {  get { return string.Format("{0}kz", price * quantity); } }



    }

1 个答案:

答案 0 :(得分:2)

公开收据。如果调用者甚至无法访问收据,则无法请求form8构造函数中的列表。