1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-18 23:48:35 +02:00
Sonarr/src/NzbDrone.Common/TryParseExtension.cs

31 lines
613 B
C#
Raw Normal View History

using System;
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;
}
2013-12-12 03:41:58 +03:00
public static Nullable<long> ParseInt64(this string source)
{
Int64 result = 0;
if (Int64.TryParse(source, out result))
{
return result;
}
return null;
}
}
}