Is there any way to express this more concisely?
if (someString == null || someString == "")
throw new ArgumentExcepti on("String must have something in it."); // or
something
What would be perfect would be someString.IsEm pty(), but MS didn't see fit
to include that particular one. Maybe there's something just as good. ??
Chris
							
						
					if (someString == null || someString == "")
throw new ArgumentExcepti on("String must have something in it."); // or
something
What would be perfect would be someString.IsEm pty(), but MS didn't see fit
to include that particular one. Maybe there's something just as good. ??
Chris
 
	
Comment