Is the input string null or empty

image_pdfimage_print
   
 

//The MIT License (MIT)
//http://arolibraries.codeplex.com/license
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;

namespace AroLibraries.ExtensionMethods.Strings
{
    public static class StringExt
    {

        public static bool Ext_IsNullOrEmpty(this string str)
        {
            return String.IsNullOrEmpty(str);
        }

    }
}

   
     


This entry was posted in Data Types. Bookmark the permalink.