示例#1
0
 // Token: 0x06008AB4 RID: 35508 RVA: 0x0035DD2B File Offset: 0x0035C12B
 public static long Clamp(long _value, long _min, long _max)
 {
     return(MathfEx.Min(MathfEx.Max(_value, _min), _max));
 }