"Johan Söderlind Åström" wrote in message news:c6bcd791-6f99-4a9a-aba1-e238b30e611e@googlegroups.com... >> The memory footprint of most arrays is insignificant. I usually do this >> kind >> of thing with Strings, and the typical string is only a few dozen bytes. >> Obviously, if a single array is using most of the memory on the computer, >> then you don't want to copy it. (But you're not going to pass those as a >> parameter in the first place.) > > I am not? In which way should I pass large arrays? You don't. There can only be one such array per program, so passing it as a parameter just adds overhead. Just use a global data structure somewhere. Randy.