C# (CSharp) Jurassic ConcatenatedString - 4 Beispiele gefunden. Dies sind die am besten bewerteten C# (CSharp) Beispiele für die Jurassic.ConcatenatedString, die aus Open Source-Projekten extrahiert wurden. Sie können Beispiele bewerten, um die Qualität der Beispiele zu verbessern.
Represents a string that supports efficient concatenation. This class is used instead of System.String when two strings are concatenated together using the addition operator (+) or the concat() function. Use of this class avoids the creation of useless intermediary strings and by doing so speeds up string concatenation dramatically (this change improved sunspider/string-validate-input.js by almost 20x).