Since performance of string concatenation is quite weak in VB6 I'm testing several StringBuilder implementations. To see how long they're running, I currently use the built-in
Timer
function which only gives me the number of seconds that have passed after midnight.
Is there a way (I guess by importing a system function) to get something with milliseconds precision?
You might also consider using a different approach. Try calling your routines from a loop with enough iterations to give you a measurable time difference.
You can try using the System::Diagnostics::Stopwatch