MCLawl.Group.Exists C# (CSharp) Method

Exists() public static method

public static Exists ( string name ) : bool
name string
return bool
        public static bool Exists(string name)
        {
            name = name.ToLower();
            foreach (Group gr in GroupList)
            {
                if (gr.name == name.ToLower()) { return true; }
            } return false;
        }