Last change
on this file since 15189 was
15189,
checked in by pkimmesw, 7 years ago
|
#2665 Fixed small issues, testet benchmark suite, added INX Expressions
|
File size:
334 bytes
|
Rev | Line | |
---|
[15189] | 1 | using System.Text;
|
---|
| 2 |
|
---|
| 3 | namespace HeuristicLab.Problems.ProgramSynthesis.Push.ObjectPools {
|
---|
| 4 | using HeuristicLab.Problems.ProgramSynthesis.Push.Data.Pool;
|
---|
| 5 |
|
---|
| 6 | public static class StringBuilderPool {
|
---|
| 7 | public static readonly ObjectPool<StringBuilder> Instance = new ObjectPool<StringBuilder>(() => new StringBuilder());
|
---|
| 8 | }
|
---|
| 9 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.