C#类怎样表示多对多的关系?两个类之间是多对多的关系。代码应该怎样写比较好? [解决办法]class A{ public IList<B> B { get; set; }}class B{ public IList<A> A { get; set; }}