C#中怎么解决Account代码问题
Desktop.rar
(71.48 KB)
using System;using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace BankAccount
{
public partial class Form1 : Form
{
private Account acc; //声明帐户对象,但还未实例化!
//Todo all: 整个程序请实现异常处理,使得用户在任何操作情况下,程序都不会崩溃,并有适当的提示信息!
public Form1()
{
InitializeComponent();
}
}
}