私は c# にかなり慣れていません。優しくしてください。数時間ネットを検索しましたが、成功しませんでした。ユーザー定義クラスから要素を削除したいと考えています。どうすればいいのですか?
以下はコードのスニペットです。
public class Level2
{
public double price { get; set; }
public long volume { get; set; }
public Level2(double price, long volume)
{
this.price = price;
this.volume = volume;
}
}
static void Main()
{
List<Level2> bid = new List<Level2>();
ask.Add(new Level2(200, 500));
ask.Add(new Level2(300, 400));
ask.Add(new Level2(300, 600));
// how to remove this element ???
ask.Remove(300, 400); //doesn't work
}
ある種の IEnumerable を実装する必要があると思いますが、構文はどのようになりますか? 誰かが私に作業スニペットを教えてもらえますか? どうもありがとう