ShopInfoFromProductList
This commit is contained in:
parent
393acb785e
commit
5a3478d814
14
src/Infrastructure/BotSharp.Abstraction/Utilities/MathExt.cs
Normal file
14
src/Infrastructure/BotSharp.Abstraction/Utilities/MathExt.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
namespace BotSharp.Abstraction.Utilities;
|
||||
|
||||
public static class MathExt
|
||||
{
|
||||
public static int Max(int a, int b, int c)
|
||||
{
|
||||
return Math.Max(Math.Max(a, b), c);
|
||||
}
|
||||
|
||||
public static long Max(long a, long b, long c)
|
||||
{
|
||||
return Math.Max(Math.Max(a, b), c);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue