C# (CSharp) Jurassic ConcatenatedString - 4 examples found. These are the top rated real world C# (CSharp) examples of Jurassic.ConcatenatedString extracted from open source projects. You can rate examples to help us improve the quality of examples.
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).