公告板
版本库
filestore
活动
搜索
登录
main
/
Project_SG_scripts
三国卡牌客户端代码仓库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
262 幻境阁系统-客户端 新增仅适用武将解锁的头像和形象的红点移除规则
lcy
2025-12-15
89343a7a0909e5244a3b69c4db1294de4536243b
[Project_SG_scripts.git]
/
Main
/
Utility
/
CollectionExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
using System;
using System.Collections.Generic;
public static class CollectionExtensions
{
public static bool Contains<T>(this T[] source, T value)
{
return Array.IndexOf(source, value) != -1;
}
}