这是ASP.NET的文档using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ATM { class Bank { private List accounts; public List Accounts { get { return accounts; } set { accounts = value; }