playercollection.cs
来自「破解的飞信源代码」· CS 代码 · 共 26 行
CS
26 行
namespace Imps.Client.Core
{
using System;
using System.Collections.Generic;
public class PlayerCollection : List<Player>
{
private Dictionary<Player, MessageStatus> _collection = new Dictionary<Player, MessageStatus>();
public override string ToString()
{
if (base.get_Count() == 0)
{
return string.Empty;
}
string[] textArray = new string[base.get_Count()];
for (int i = 0; i < base.get_Count(); i++)
{
textArray[i] = base.get_Item(i).Name;
}
return string.Join(";", textArray);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?