12 lines
No EOL
237 B
C#
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);
|
|
}
|
|
}
|
|
} |