mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
20 lines
375 B
C#
20 lines
375 B
C#
|
using System;
|
|||
|
using System.Linq;
|
|||
|
|
|||
|
namespace NzbDrone.Common
|
|||
|
{
|
|||
|
public static class TryParseExtension
|
|||
|
{
|
|||
|
public static Nullable<int> ParseInt32(this string source)
|
|||
|
{
|
|||
|
Int32 result = 0;
|
|||
|
|
|||
|
if (Int32.TryParse(source, out result))
|
|||
|
{
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
return null;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|