Пример #1
0
    public IndexedCollection Stack(int SlotID)
    {
        if (!zCol.ContainsKey(SlotID))
        {
            zCol.Add(SlotID, new IndexedCollection());
        }

        return((IndexedCollection)zCol.Item(SlotID));
    }
Пример #2
0
 private bool ServerExist(int ServerID)
 {
     return(zServers.ContainsKey(ServerID));
 }
Пример #3
0
 private bool StackExist(int ServerID)
 {
     return(zStacks.ContainsKey(ServerID));
 }