/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TreeConverter/SymbolTable/DSST/AreaArrayTable.cs
35 строк
634 B
Mikhalkovich Stanislav
Mikhalkovich в Copyright
28 июл 2019, 23:53
28 июл 2019, 23:53
e603b1f
Код
Авторство
О чём код?
// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (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 { /// <summary> /// /// </summary> 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; } } } }