Пример #1
0
 public void Dispatch()
 {
     if (this.dic != null)
     {
         Dictionary <int, BE_msg> .Enumerator enumerator = this.dic.GetEnumerator();
         while (enumerator.MoveNext())
         {
             KeyValuePair <int, BE_msg> current = enumerator.Current;
             BE_msg value = current.Value;
             MobaMessageManagerTools.SendClientMsg(value.code, value.param, value.dispatch);
         }
         this.dic.Clear();
     }
 }
Пример #2
0
        public void Add(object code, object param, bool dispatch)
        {
            int    key   = (int)code;
            BE_msg value = new BE_msg(code, param, dispatch);

            if (this.dic.ContainsKey(key))
            {
                this.dic[key] = value;
            }
            else
            {
                this.dic.Add(key, value);
            }
        }