Base class for all SVG*List-derived classes. Note we're using ArrayList (as opposed to deriving from) to hide unneeded ArrayList methods Note that a CLR uint is equivalent to an IDL ulong, so uint is used for all index values
Inheritance: IEnumerable
 public SvgListEnumerator(SvgList list)
 {
     this.list = list;
     this.Reset();
 }
Beispiel #2
0
 public void SetUp()
 {
     list = makeList();
 }