次のような浮動小数点のリストがあります。
wayPoints = (new PointF[] {
new PointF(18, 0),
new PointF(18,0),
new PointF(55, 155),
new PointF(55, 155),
new PointF(55, 155),
new PointF(55, 155),
new PointF(55, 0),
new PointF(55, 230)}).ToList();
同じポイントがリストから削除されたが、それらの同じポイントの1つがリストに残っているラムダ式を使用したい
出力:
wayPoints =
(new PointF[] {
new PointF(18, 0),
new PointF(55, 155),
new PointF(55, 0),
new PointF(55, 230)}
).ToList();
ラムダ式でコマンドをどのように書くべきですか?