フィールドにポイントを追加することはできますが、削除することはできません。これは私が現在使用しているコードです:
public class Vertex
{
public Point p { get; private set; }
public int ident {get; private set; }
public int dist { get; set; }
public Vertex(Point p, int ident)
{
this.p = p;
this.ident = ident;
}
}