DotNext by .NET Foundation and Contributors

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

 Int32Const

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