ShopInfoFromProductList

This commit is contained in:
Haiping Chen 2024-12-02 15:06:14 +00:00
parent 393acb785e
commit 5a3478d814

View 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);
}
}