Search results for query: *

  1. R

    two dimension array into one dimension.

    Thanks tom. Structure sounds a good idea, I'm planning on holding 150 double elements in the array, I read somewhere that you should limit the structure to a max of 16 bytes?
  2. R

    two dimension array into one dimension.

    Easy question.... If I have a two dimension array, something like this atwodim[0,0] = 9.0 atwodim[0,1] = 8.0 atwodim[0,2] = 7.0 atwodim[0,3] = 6.0 atwodim[0,4] = 5.0 atwodim[1,0] = 9.0 atwodim[1,1] = 8.0 atwodim[1,2] = 7.0 atwodim[1,3] = 6.0 atwodim[1,4] = 5.0 Is there a quick .NET function...
  3. R

    Question Memory Problems - DataTables

    Thanks for the reply. It could be 500,000 records it may process in total. The problem is I'm converting a flat record into 7 data rows (hence the need for a array of rows) , I dont think the GC can keep up with the clean up operation in the background. I'm going to change some of the...
  4. R

    Question Memory Problems - DataTables

    I've found my problem. If I add up the number of bytes per row and x by the number of records it may reach a few megabytes, its possible that the GC isnt fast enough to clean up causing the out of memory problems. Looks like using a datatable is out of the question, thats a pity mind you...
  5. R

    Question Memory Problems - DataTables

    I'm getting a major headache using datatables inside VB.NET (Framework 2.0 and 3.5) I'm basically reading some data from SQL into a datatable and then passing that datatable onto another thread which deals with writing out some data to a COM object before clearing the rows and repeating the...
Back
Top