Beispiel #1
0
        /// <summary>Queries if a null or is empty.</summary>
        ///
        /// <param name="value">The value.</param>
        ///
        /// <returns>true if a null or is empty, false if not.</returns>
		public static bool IsNullOrEmpty(MvcHtmlString value)
		{
			return (value == null || value._value.Length == 0);
		}