Skip to content

Commit 5a3478d

Browse files
committed
ShopInfoFromProductList
1 parent 393acb7 commit 5a3478d

File tree

1 file changed

+14
-0
lines changed
  • src/Infrastructure/BotSharp.Abstraction/Utilities

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
namespace BotSharp.Abstraction.Utilities;
2+
3+
public static class MathExt
4+
{
5+
public static int Max(int a, int b, int c)
6+
{
7+
return Math.Max(Math.Max(a, b), c);
8+
}
9+
10+
public static long Max(long a, long b, long c)
11+
{
12+
return Math.Max(Math.Max(a, b), c);
13+
}
14+
}

0 commit comments

Comments
 (0)