Is String Null Or Empty - CSharp System

CSharp examples for System:String Format

Description

Is String Null Or Empty

Demo Code


using System.Text;
using System.Web.UI;
using System;// w ww .j a  v a  2  s  .co  m

public class Main{

    public static bool IsNullOrEmpty(this string source)
    {
        return string.IsNullOrEmpty(source);
    }
}

Related Tutorials