Add() public method

public Add ( string p ) : void
p string
return void
Ejemplo n.º 1
0
 public static PlayerList Load(string path, Group groupName)
 {
     if (!Directory.Exists("ranks")) { Directory.CreateDirectory("ranks"); }
     path = "ranks/" + path;
     PlayerList list = new PlayerList();
     list.group = groupName;
     if (File.Exists(path))
     {
         foreach (string line in File.ReadAllLines(path)) { list.Add(line); }
     }
     else
     {
         File.Create(path).Close();
         Server.s.Log("CREATED NEW: " + path);
     } return list;
 }
Ejemplo n.º 2
0
        public static PlayerList Load(string path, Group groupName)
        {
            if (!Directory.Exists("ranks"))
            {
                Directory.CreateDirectory("ranks");
            }
            path = "ranks/" + path;
            PlayerList list = new PlayerList();

            list.group = groupName;
            if (File.Exists(path))
            {
                foreach (string line in File.ReadAllLines(path))
                {
                    list.Add(line);
                }
            }
            else
            {
                File.Create(path).Close();
                Server.s.Log("CREATED NEW: " + path);
            } return(list);
        }