ChatterBox.Client.Presentation.Shared.ViewModels.WelcomeViewModel.ValidateStrings C# (CSharp) Method

ValidateStrings() private method

private ValidateStrings ( ) : bool
return bool
        private bool ValidateStrings(params string[] strings)
        {
            return strings != null &&
                   strings.All(@string => !string.IsNullOrWhiteSpace(@string) && !string.IsNullOrEmpty(@string));
        }
    }