仪表盘
版本库
文件存储
活动
搜索
登录
况洋洋
/
LW_MesService
龙巍PC后端
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
Merge branch 'master' of http://git.gs-mes.com:8080/r/~kyy/LW_MesService
cnf
2025-08-27
65a2e96d657c7a3b6e0da2af6d223bd765476c0b
[~kyy/LW_MesService.git]
/
WebApi
/
Gs.Toolbox
/
ApiCore
/
Extensions
/
StringExtension.cs
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;
}
}