public void AddPArticle(string name) { if (PARTICLES == null) { PARTICLES = new List <string>(); } if (!PARTICLES.Contains(name)) { PARTICLES.Add(name); } }
public string[] GetParticles() { return(PARTICLES.ToArray()); }