Exemplo n.º 1
0
Arquivo: Menu.cs Projeto: balu92/RSM
 // overloaded constructor takes a list and makes it the list for this menu
 public Menu(ref ServerList list)
 {
     m_list = list;
 }
Exemplo n.º 2
0
 // overloaded constructor takes a list and makes it the list for this menu
 public Menu(ref ServerList list)
 {
     m_list = list;
 }
Exemplo n.º 3
0
Arquivo: Menu.cs Projeto: balu92/RSM
        // constructors

        // default constructor makes a fresh list and tries to deserialize it
        public Menu()
        {
            m_list = new ServerList();
            m_list.deSerialize();
        }
Exemplo n.º 4
0
 // constructors
 // default constructor makes a fresh list and tries to deserialize it
 public Menu()
 {
     m_list = new ServerList();
     m_list.deSerialize();
 }