CapDemo.GUI.User_Controls.Team_Setting.MoreOneTeam C# (CSharp) Method

MoreOneTeam() public method

public MoreOneTeam ( ) : bool
return bool
        public bool MoreOneTeam()
        {
            int j = 0;
            foreach (Add_Team item in flp_Team.Controls)
            {
                j++;
            }
            if (j < 2)
            {
                return false;
            }
            else
            {
                return true;
            }
        }