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
コード例 #1
0
 public SvgListEnumerator(SvgList list)
 {
     this.list = list;
     this.Reset();
 }
コード例 #2
0
ファイル: SvgListTests.cs プロジェクト: codebutler/savagesvg
 public void SetUp()
 {
     list = makeList();
 }