コード例 #1
0
ファイル: ListParser.cs プロジェクト: olivr70/Eto.Parse
 protected ListParser(ListParser other, ParserCloneArgs chain)
     : base(other, chain)
 {
     Items = new List <Parser>(other.Items.Select(chain.Clone));
 }
コード例 #2
0
		protected ListParser(ListParser other, ParserCloneArgs chain)
			: base(other, chain)
		{
			Items = new List<Parser>(other.Items.Select(chain.Clone));
		}