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
상속: IEnumerable
예제 #1
0
 public SvgListEnumerator(SvgList list)
 {
     this.list = list;
     this.Reset();
 }
예제 #2
0
 public void SetUp()
 {
     list = makeList();
 }