geekbot/Geekbot.net/Lib/Extensions/LongExtensions.cs

12 lines
No EOL
237 B
C#

using System;
namespace Geekbot.net.Lib.Extensions
{
public static class LongExtensions
{
public static ulong AsUlong(this long thing)
{
return Convert.ToUInt64(thing);
}
}
}