嗨,我正在使用 C# 2010 Windows Forms 应用程序,对于我的项目,我想知道如何在添加新成员时自动使变量递增,此外,当我删除任何成员时,重置成员的数量将减少 1 我希望我能帮您弄清楚我的问题并感谢您的帮助......对不起我的英语不好
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AddressBookInC
{
class Addresses
{
public int AddressID { get; set; }
public String FirstName { get; set; }
public String LastName { get; set; }
public String AddressEmail { get; set; }
public String PhoneNumber { get; set; }
}
}