No Description

tokarskiy 421143e60c Обновить 'README.md' 4 years ago
LICENSE 860dd720a7 Initial commit 4 years ago
Program.cs 0ab0a14690 Обновить 'Program.cs' 4 years ago
Program2.cs bfb3803b9f Добавить 'Program2.cs' 4 years ago
README.md 421143e60c Обновить 'README.md' 4 years ago

README.md

DotnetStringConcatBenchmark


Program.cs

This program measures productivity of concatenation of 10000 strings performed by different methods:

  1. Plus operator (PlusOperatorConcatTest)
  2. String.Join with entering capacity (FixedListConcatTest)
  3. String.Join without entering capacity (UnfixedListConcatTest)
  4. StringBuilder with entering capacity (FixedStringBuilderTest)
  5. StringBuilder without entering capacity (UnfixedStringBuilderTest)

Result:


Program2.cs

This program measures productivity of concatenation of small number of strings

  1. Plus operator (PlusOperatorConcatTest)
  2. String with dollar (DollarSign)
  3. String.Format (StringFormat)
  4. StringBuilder per each iteration (StringBuilder)
  5. StringBuilder pooling (ClearableStringBuilder)

Result: