我是编程新手,所以我不知道术语是什么,我很抱歉。我希望能够编写如下所示的内容:
Label Label1 = new Label();
Label1.Text = DateTime.Now.ToString("MM.dd.yyyy");
但是用我自己的对象:
Reciept ReciptForAirPlaneTicket = new Reciept();
ReciptForAirPlaneTicket.MOP = MOP.CreditCard.Visa("4111111111111111|0815");
Reciept ReciptForFood = new Reciept();
ReciptForFood.MOP = MOP.CreditCard.MasterCard("4222222222222222|0917");
Reciept ReciptForClothes = new Reciept();
ReciptForClothes.MOP = MOP.Cash;
Reciept ReciptForTools = new Reciept();
ReciptForTools.MOP = MOP.Check("12345");
我真的不是想偷懒,但我已经找了快一天了,我什至不知道要找什么。我想我至少需要创建一个类,还需要一个结构或称为枚举的东西,但我真的不知道。
我正在使用 C#。