I'm wondering if you can create an instance of the stringbuilder that is also an array. I'm able to dim the variable:
Dim sbldClaim(6) As System.Text.StringBuilder
When I try to append to say sbldClaim(0) I get the following:
Referenced object has a value of 'Nothing'.
It wants to see that NEW keyword but this can't be done with an array. Any ideas on whether it's possible to have an array of Stringbuilder objects?
O.
Dim sbldClaim(6) As System.Text.StringBuilder
When I try to append to say sbldClaim(0) I get the following:
Referenced object has a value of 'Nothing'.
It wants to see that NEW keyword but this can't be done with an array. Any ideas on whether it's possible to have an array of Stringbuilder objects?
O.