1 instantiation of StringBuilderPool
NuGet.Versioning (1)
src\nuget-client\build\Shared\StringBuilderPool.cs (1)
29
public static readonly StringBuilderPool Shared =
new
();
10 references to StringBuilderPool
NuGet.Versioning (10)
FloatRange.cs (2)
384
StringBuilder sb =
StringBuilderPool
.Shared.Rent(256);
388
return
StringBuilderPool
.Shared.ToStringAndReturn(sb);
SharedStringBuilder.cs (3)
14
/// Renting and returning buffers with an <see cref="
StringBuilderPool
" /> can increase performance
78
/// <see cref="
StringBuilderPool
" /> instance, returning the built string.
86
/// must only be returned via <see cref="ToStringAndReturn" /> once. The default <see cref="
StringBuilderPool
" />
src\nuget-client\build\Shared\StringBuilderPool.cs (5)
13
/// Renting and returning buffers with an <see cref="
StringBuilderPool
"/> can increase performance
27
/// Retrieves a shared <see cref="
StringBuilderPool
"/> instance.
29
public static readonly
StringBuilderPool
Shared = new();
61
/// <see cref="
StringBuilderPool
"/> instance, returning the built string.
69
/// must only be returned via <see cref="ToStringAndReturn"/> once. The default <see cref="
StringBuilderPool
"/>