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));
		}
	}