T
thomas.w
Hi,
Is it possible to create an instance of an obect and directly assign
it to disk and not to memory.
e.g
'The code below creates a string array and loads it with 100 string
elements.
Dim o(100) As String
For i As Integer = 0 To 99
o(i) = "String No:" & i
Next
'This "o" object is now stored in memory.
Can you instance the "Dim o(100) as String" object directly to disk?
I realise there are serialization methods that can write the entire
object to disk after it has been created, but I want to have the
ability to incrementally update data in large objects without moving
it in and out of memory.
Is it possible to create an instance of an obect and directly assign
it to disk and not to memory.
e.g
'The code below creates a string array and loads it with 100 string
elements.
Dim o(100) As String
For i As Integer = 0 To 99
o(i) = "String No:" & i
Next
'This "o" object is now stored in memory.
Can you instance the "Dim o(100) as String" object directly to disk?
I realise there are serialization methods that can write the entire
object to disk after it has been created, but I want to have the
ability to incrementally update data in large objects without moving
it in and out of memory.