mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
19 lines
580 B
C#
19 lines
580 B
C#
|
using System.Globalization;
|
|||
|
|
|||
|
namespace MediaBrowser.Model.Extensions
|
|||
|
{
|
|||
|
public static class IntHelper
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Tries the parse culture invariant.
|
|||
|
/// </summary>
|
|||
|
/// <param name="s">The s.</param>
|
|||
|
/// <param name="result">The result.</param>
|
|||
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
|
|||
|
public static bool TryParseCultureInvariant(string s, out int result)
|
|||
|
{
|
|||
|
return int.TryParse(s, NumberStyles.Any, CultureInfo.InvariantCulture, out result);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|