vote up 1 vote down star

I have an object that needs a test if the object data is valid. The validation itself would be called from the thread that instatiated the object, it looks like this:

 {
  if (_step.Equals(string.Empty)) return false;
  if (_type.Equals(string.Empty)) return false;
  if (_setup.Equals(string.Empty)) return false;
  return true;
}

Would it be better to implement this as a property, or as a method, and why? I have read the answers to a related question, but I don't think this specific question is covered there.

flag

3 Answers

vote up 7 vote down check

My personal opinion here would be:

  • If the "validate" method mutates the object in any way (which your example doesn't) then make it a method.
  • If the object remains un-changed after validation, make it a property.
link|flag
This is a great "rule"! – Gregor Oct 9 '08 at 12:52
vote up 1 vote down

I would say as a Property.

if(something.IsValid) { ...

looks better then

if(something.IsValid()) { ...

Also an example from MSDN: http://msdn.microsoft.com/en-us/library/system.web.ui.page.isvalid(VS.71).aspx

link|flag
vote up 1 vote down

That code needs refactoring. This is how you write code in Java, not in C#. In C#, you've got operator overloading.

if (_step == "")) return false;
if (_type == "")) return false;
if (_setup == "")) return false;

This is the idiomatic way of doing the comparison. Your way, besides being more verbose, is just unexpected and inconsistent in C#.

If, and only if, there's a chance that these strings are actually null instead of empty, use the following instead:

if (string.IsNullOrEmpty(_step)) return false;
link|flag
I remember reading somwhere that it is recommended to use Equals(...) in C# as well, because of some CLR specific stuff. Of course I don't remember where I read this... – Treb Oct 9 '08 at 13:00
Yeah, there are several articles on the web claiming such nonsense (searching for "effective C#" turns up several, besides the good book of the same title). However, they have repeatedly been debunked. – Konrad Rudolph Oct 9 '08 at 13:10
I would create an bool AreNulls(params object[] parameters); method to handle those cases if it is very common. – jop Oct 9 '08 at 13:25
That's all well and good, but - it doesn't answer the original question. That said, using string.IsNullOrEmpty(stringToCheck) or stringToCheck == string.Empty are definetly the way to go. – Rob Oct 9 '08 at 13:38
Rob, The original question has already been answered and I personally have nothing to add to your answer. – Konrad Rudolph Oct 9 '08 at 14:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.