12-15-2005 05:40 AM
12-15-2005 06:09 AM
12-15-2005 06:34 AM
Is this a labview leak or dot net memory leak. If you are making many instances of a .Net object and not de-referencing then the memory is not garbage collected. you should makesure that you close the references after use and can even call .net's garbage collector to see if your memory is being released. If it is a labview memory leak this is usually due to building larger and larger arrays inside a loop, an easy method of fixing this is when the array gets to a certain size (ie 64K elements), save it to disk and only keep the data you need.
Paul
12-15-2005 11:10 AM
12-15-2005 11:31 AM