Esempio n. 1
0
            /// <summary>
            ///   The is null or white space.
            /// </summary>
            /// <returns>
            ///   The <see cref="bool" />.
            /// </returns>
            public bool IsNullOrWhiteSpace()
            {
                if (_string == null)
                {
                    return(TStringHelper.IsNullOrWhiteSpace(_stringBuilder));
                }

                return(TStringHelper.IsNullOrWhiteSpace(_string));
            }