using System.Text; namespace HeuristicLab.Problems.ProgramSynthesis { public static class StringBuilderPool { public static readonly ObjectPool Instance = new ObjectPool(() => new StringBuilder()); } }