// Copyright (c) Ivan Bondarev, Stanislav Mihalkovich (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; using System.Collections; namespace SymbolTable { /// /// /// public class AreaArrayTable { private ArrayList data; public AreaArrayTable(int StartSize) { data=new ArrayList(StartSize); } public int Add(int[] table) { return data.Add(table); } public int[] this [int index] { get { return (data[index] as int[]); } set { data[index]=value; } } } }