I wrote an Asset Audit and Management program for our organization. One of the functions of it is to see all the logons for a particular asset. However, the more logons audited, the less efficient basic string concatenation (string1 = string1 & string2) becomes.
As an example, suppose I want to audit all the logons that occured on our Citrix box. As one can image, there are tens of thousands. Using basic string concatenation 10,000 times is taxing on system resources and often results in the program Not Responding.
Any suggestions for a more efficient string concatenation function?
-Geates
"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live."
- Martin Golding
As an example, suppose I want to audit all the logons that occured on our Citrix box. As one can image, there are tens of thousands. Using basic string concatenation 10,000 times is taxing on system resources and often results in the program Not Responding.
Any suggestions for a more efficient string concatenation function?
-Geates
"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live."
- Martin Golding