cnf
2025-08-15 312a1d1f6c53cfa789181b1c9c5fa74e4167f57d
1
2
3
4
5
6
7
8
9
10
namespace Gs.Toolbox.ApiCore.Extensions;
 
public static class StringExtension
{
    public static bool IsIn(this string str, params string[] ps)
    {
        if (ps.Contains(str)) return true;
        return false;
    }
}