Search:

Type: Posts; User: killian353535

Search: Search took 0.29 seconds.

  1. Re: [VB6] StringBuilder - Fast string concatenation

    Dragokas, thank you for the all the work! It's been great to see all the thought processes. I find it interesting that the RC5 ArrayList solution is the fastest, since it wasn't even originally...
  2. Re: [VB6] StringBuilder - Fast string concatenation

    @Dragokas, that is the problem :) For instance, many of the versions don't assemble the string until the end of the description string.

    For example, the collection version doesn't include the time...
  3. Re: [VB6] StringBuilder - Fast string concatenation

    @Dragokas, I still don't think the timing is accurate. I see you're using a different timer. So to more accurately portray the work, each builder should output its final string before the...
  4. Re: [VB6] StringBuilder - Fast string concatenation

    @Dragokas, yes the v2.3 release on github is indeed the latest. It's been that long since an updated release, though I keep plugging away on the code.

    @Olaf, ok I've added the new comparisons to...
  5. Re: [VB6] StringBuilder - Fast string concatenation

    Dragokas, the collection isn't including vbCrLf. But that aside, I don't think the timing is accurate since RC5 does 99% of the work on each append instead of a form of chunking as the rest do. By...
  6. Re: [VB6] StringBuilder - Fast string concatenation

    I can see a factor of 2 might be too much at times. Never even though about changing it, maybe even letting it be adjustable. You've given me something to think about.

    So I noticed something about...
  7. Re: [VB6] StringBuilder - Fast string concatenation

    I'd be interested in seeing the ConcatCollection method. It must still have to iterate the collection and append into a final buffer. The difference with VBCorLib is that it is appending into a...
  8. Re: Breaking News, few guys in China wanna write a new basic language

    So are these IDE's an attempt to just replace the VB6 IDE? I mean, is it just to ensure continued existence of the VB6 language? I've heard of a few attempts of people creating their own VB6...
  9. Re: [VB6] IEnumVARIANT / For Each support without a typelib

    Halting execution in the IDE with the stop button doesn't give things a chance to tear-down properly. The enumerator is completely managed within the program and not by VB. It requires a call to the...
  10. Re: [VB6] StringBuilder - Fast string concatenation

    I agree with Olaf. I don't use the Mid$ method in VBCorLib, but do allocate a single string buffer and use CopyMemory, doubling the buffer size as it needs to grow. Using Olaf's benchmark, VBCorLib...
Results 1 to 10 of 10



Click Here to Expand Forum to Full Width