M
MD Cobb
Bug: There's a small bug regarding strings in VB.NET
2003. If you append char's to a string but the first char
appended is nothing then the string value remains nothing
regardless of how many chars are appended thereafter or
their values. This also applies if the first value in a
StringBuilder class is equal to nothing - regardless of
the rest of the content the StringBuilder.ToString will
also return a null string.
Workaround: do not start string building off with chars
that are equal to nothing.
2003. If you append char's to a string but the first char
appended is nothing then the string value remains nothing
regardless of how many chars are appended thereafter or
their values. This also applies if the first value in a
StringBuilder class is equal to nothing - regardless of
the rest of the content the StringBuilder.ToString will
also return a null string.
Workaround: do not start string building off with chars
that are equal to nothing.