On Fri, 10 Oct 2008 19:54:33 +0400, Benji Smith <dlanguage at benjismith.net> wrote: > I think *all* arrays should be declared like this: > > T[] array = new T[n]; > You often want to avoid heap allocation at all cost. It can't be done as you propose.