CSharp examples for System:String Format
Is String Null Or Empty
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); } }