diff --git a/TeleSharp.TL/TLUtils.cs b/TeleSharp.TL/TLUtils.cs index 0f7b04c..7853e04 100644 --- a/TeleSharp.TL/TLUtils.cs +++ b/TeleSharp.TL/TLUtils.cs @@ -1,7 +1,5 @@ using System.IO; using System.Text; -using BigMath; -using BigMath.Utils; namespace TeleSharp.TL { @@ -160,30 +158,4 @@ namespace TeleSharp.TL writer.Write(src); } } - - public class Int128Util - { - public static Int128 Deserialize(BinaryReader reader) - { - return reader.ReadBytes(16).ToInt128(0, true); - } - - public static void Serialize(Int128 src, BinaryWriter writer) - { - writer.Write(src.ToBytes(true)); - } - } - - public class Int256Util - { - public static Int256 Deserialize(BinaryReader reader) - { - return reader.ReadBytes(32).ToInt256(0, true); - } - - public static void Serialize(Int256 src, BinaryWriter writer) - { - writer.Write(src.ToBytes(true)); - } - } } \ No newline at end of file diff --git a/TeleSharp.TL/TeleSharp.TL.csproj b/TeleSharp.TL/TeleSharp.TL.csproj index 65252c2..023492d 100644 --- a/TeleSharp.TL/TeleSharp.TL.csproj +++ b/TeleSharp.TL/TeleSharp.TL.csproj @@ -30,10 +30,6 @@ 4 - - ..\packages\BigMath.0.5.0\lib\portable-net45+netcore45+wpa81+wp8+MonoAndroid1+MonoTouch1\BigMath.dll - True - @@ -782,9 +778,6 @@ - - -