mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 05:53:03 +03:00
add additional view settings
This commit is contained in:
@@ -59,5 +59,16 @@ namespace MediaBrowser.Model.Extensions
|
||||
{
|
||||
return val.ToString(CultureInfo.InvariantCulture);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Trims the start.
|
||||
/// </summary>
|
||||
/// <param name="str">The string.</param>
|
||||
/// <param name="c">The c.</param>
|
||||
/// <returns>System.String.</returns>
|
||||
public static string TrimStart(string str, char c)
|
||||
{
|
||||
return str.TrimStart(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user