Xin ai đó có thể giúp với lỗi sau:
Khả năng truy cập không nhất quán: loại thuộc tính 'Test.Delivery' ít truy cập hơn thuộc tính 'Test.Form1.thelivery'
private Delivery thedelivery;
public Delivery thedelivery
{
get { return thedelivery; }
set { thedelivery = value; }
}
Tôi không thể chạy chương trình do thông báo lỗi không nhất quán.
Đây là lớp giao hàng của tôi:
namespace Test
{
class Delivery
{
private string name;
private string address;
private DateTime arrivalTime;
public string Name
{
get { return name; }
set { name = value; }
}
public string Address
{
get { return address; }
set { address = value; }
}
public DateTime ArrivlaTime
{
get { return arrivalTime; }
set { arrivalTime = value; }
}
public string ToString()
{
{ return name + address + arrivalTime.ToString(); }
}
}
}