System.Net.CookieContainer.CookieContainer.IsNullOrEmpty C# (CSharp) Метод

IsNullOrEmpty() статический приватный Метод

static private IsNullOrEmpty ( string s ) : bool
s string
Результат bool
		static bool IsNullOrEmpty (string s)
		{
			return ((s == null) || (s.Length == 0));
		}
	}