天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
575 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OpcServerTest
{
public class ChatEventHelperTest
{
public delegate void ChatEventHandlerTest(object sender, ChatEventArgsTest e);//定义用于把处理程序赋予给事件的委托。
public static Dictionary<string, ChatEventHandlerTest> chatterstest = new Dictionary<string, ChatEventHandlerTest>();//创建一个静态Dictionary(表示键和值)集合(字典),用于记录在线成员,Dictionary<(Of <(TKey, TValue>)>) 泛型类
}
}