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>)>) 泛型类
    }
}