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