for Push.

This commit is contained in:
nobobo
2026-06-01 12:28:44 +09:00
parent c845fb60a0
commit 33a5d7bbea
28 changed files with 2838 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KssSmaPlaLib.Commons
{
public static class IntUxer
{
public static int StrToInt(string str, int defaultValue)
{
if (int.TryParse(str, out int intValue))
{
return intValue;
}
else
{
return defaultValue;
}
}
}
}