removed TvdbLib.dll using the embedded wattvdb.codeplex.com

This commit is contained in:
kay.one 2013-03-02 11:32:55 -08:00
commit ba68dd9386
66 changed files with 103 additions and 23915 deletions

View file

@ -0,0 +1,20 @@
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;
}
}
}