VBScript での文字列の連結には & 演算子を使うのが一般的だが、.NET Framework の StringBuilder クラスを使うこともできる。 手軽に使えて & 演算子より性能も良い。大量の文字列を連結するケースでは StringBuilder の利用も検討したい(というか利用してほしい)。
Take advantage of these best practices when working with strings in .NET Core for the optimal performance of your applications. Two popular classes that you will use frequently when working with ...