これは私のリストです
public string state { get; set; }
public string city { get; set; }
public Point p1 { get; set; }
public Point p2 { get; set; }
public List<Explorer> line = new List<Explorer>();
public List<Explorer> rectangle = new List<Explorer>();
public List<Explorer> ellipse = new List<Explorer>();
これは私のリストコードへの要素の追加です
line.Add(new Explorer
{
state = "AAAA",
city = "BBB",
p1 = start,
p2 = end
});
州と都市の値に関連して、それらの場所のポイントを見つける必要があります。