mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-24 19:16:32 +00:00
review
This commit is contained in:
34
MediaBrowser.Common/Extensions/StringBuilderExtensions.cs
Normal file
34
MediaBrowser.Common/Extensions/StringBuilderExtensions.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace MediaBrowser.Common.Extensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Extension methods for the <see cref="StringBuilder"/> class.
|
||||
/// </summary>
|
||||
public static class StringBuilderExtensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Concatenates and appends the members of a collection in single quotes using the specified delimiter.
|
||||
/// </summary>
|
||||
/// <param name="builder">The string builder.</param>
|
||||
/// <param name="delimiter">The character delimiter.</param>
|
||||
/// <param name="values">The collection of strings to concatenate.</param>
|
||||
/// <returns>The updated string builder.</returns>
|
||||
public static StringBuilder AppendJoinInSingleQuotes(this StringBuilder builder, char delimiter, IReadOnlyList<string> values)
|
||||
{
|
||||
for (var i = 0; i < values.Count; i++)
|
||||
{
|
||||
builder.Append('\'')
|
||||
.Append(values[i])
|
||||
.Append('\'')
|
||||
.Append(delimiter);
|
||||
}
|
||||
|
||||
// remove last ,
|
||||
builder.Length--;
|
||||
|
||||
return builder;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user