Int32Const
Represents Int32 constant as type.
namespace DotNext.Generic
{
public abstract class Int32Const : Constant<int>
{
public sealed class Zero : Int32Const
{
public const int Value = 0;
public Zero()
: base(0)
{
}
}
public sealed class Max : Int32Const
{
public const int Value = int.MaxValue;
public Max()
: base(2147483647)
{
}
}
public sealed class Min : Int32Const
{
public const int Value = int.MinValue;
public Min()
: base(-2147483648)
{
}
}
protected Int32Const(int value)
: base(value)
{
}
}
}