1 interface ICollectionValue
6 interface ISCGCollection
11 interface ICollection
: ISCGCollection
, ICollectionValue
13 new int Count { get; }
16 interface ISequenced
: ICollection
20 class Test
: ISequenced
22 public int Count { get { return 0; }
}
27 public static int Main ()
29 ISequenced t
= new Test ();