コード例 #1
0
        public SortableBindingList <XPEvent> getCurrentXP()
        {
            //Make sure there are enough in there
            if (!XP.ContainsKey(Session))
            {
                XP.Add(Session, new SortableBindingList <XPEvent>());
            }

            if (XP[Session] == null)
            {
                XP[Session] = new SortableBindingList <XPEvent>();
            }
            return(XP[Session]);
        }