DotNext by .NET Foundation and Contributors

<PackageReference Include="DotNext" Version="4.1.3" />

 Int64Const

public abstract class Int64Const : Constant<long>
Represents Int64 constant as type.
namespace DotNext.Generic { public abstract class Int64Const : Constant<long> { public sealed class Zero : Int64Const { public new const long Value = 0; public Zero() : base(0) { } } public sealed class Max : Int64Const { public new const long Value = long.MaxValue; public Max() : base(9223372036854775807) { } } public sealed class Min : Int64Const { public new const long Value = long.MinValue; public Min() : base(-9223372036854775808) { } } protected Int64Const(long value) : base(value) { } } }