In my VB application,I am copying huge amount of data using VB string? This results in performance issue. What shoul I use in place of VB string to improve performance?
|
|
|||
|
|
|
Try to make sure you are always passing ByRef wherever possible (in VB6). In VB.Net this is not an issue. Also, maybe preallocate your strings. Analysis and a better description of your programming task can help provide a better answer. |
||
|
|
|
|
This two part article is good source of information for VB6. Some tips mentioned there are:
|
||
|
|
|
One way to solve this is to pre-allocate a byte/char array that is big enough to hold all your concatenated strings. If you are using VB.NET, then there is the |
||
|
|
|
With VB 6 maybe this can help you out. |
||
|
|
|
|
Did you try using a StringBuilder from .NET? It is marked as "COM Visible", which means you should be able to use it from VB 6. |
||
|
|
