我对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,但是语法看起来如何?有人可以给我一个工作片段吗?多谢