1
0
mirror of synced 2025-01-10 05:21:47 +01:00

13 lines
247 B
C#
Raw Normal View History

2021-09-21 00:16:38 +02:00
using System;
namespace FDK.ExtensionMethods
{
public static class Int32Extensions
{
public static int Clamp(this int value, int min, int max)
{
return Math.Min(Math.Max(value, min), max);
}
}
}