こんにちは、私は 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; }
}
}