System.Net.CookieContainer.CookieContainer.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() static private method

static private IsNullOrEmpty ( string s ) : bool
s string
return bool
		static bool IsNullOrEmpty (string s)
		{
			return ((s == null) || (s.Length == 0));
		}
	}