Exemple #1
0
        /// <summary>
        /// Determines if the input is specifically *not* the <see cref="Strings.Empty"/> string.
        /// </summary>
        public static bool IsNotEmpty(string value)
        {
            var isEmpty = !Strings.IsEmpty(value);

            return(isEmpty);
        }