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

            return(isEmpty);
        }
 public ResourceAccess()
 {
     strings = new Strings();
     LocalizedStrings = strings;
 }