Если не ошибаюсь, то, например, так:

Quote:
// Make 'log' item data
System.Collections.Generic.IList<bool> log;
try
{
int count = t.Count;
System.Collections.Generic.List<bool> list = new System.Collections.Generic.List<bool>(count);
for (int i = 0; (i < count); i++)
{
list.Add(t[i]>=103000 & t[i]<=184300);
}
log = list;
}
catch (System.ArgumentOutOfRangeException )
{
throw new TSLab.Script.ScriptException("Ошибка при вычислении блока \'log\'. Индекс за пределам диапазона.");
}