Bloom.Book.Book.GetErrorsIfNotCheckedBefore C# (CSharp) Method

GetErrorsIfNotCheckedBefore() public method

public GetErrorsIfNotCheckedBefore ( ) : string
return string
        public string GetErrorsIfNotCheckedBefore()
        {
            if (!_haveCheckedForErrorsAtLeastOnce)
            {
                return CheckForErrors();
            }
            return "";
        }
Book