摘要:
打印购物单不需要过多的废话,直接看看代码吧!using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 项目{ public class G... 阅读全文
摘要:
Bank项目总共需要三个类来实现首先创建一个自定义的卡类卡类里面有四个属性:卡号;持卡人;密码;余额。class Card { private string cardNo;//卡号 private string cardOwner;//持卡人 ... 阅读全文