BalloonsPop.Validation.UserInputValidator.HasCorrectLength C# (CSharp) Method

HasCorrectLength() private static method

Returns true if the player move has the appropriate length.
private static HasCorrectLength ( string playerMove ) : bool
playerMove string The player move as string.
return bool
        private static bool HasCorrectLength(string playerMove)
        {
            return playerMove.Length == ValidInputLength;
        }