Law of demeter says that an object can't invoke a method M from an object B from an object A. But is it aplied to properties too? Example?
public class B{
public bool IsValid();
}
public class A{
public B B{get;set;}
}
Can I do something like that?
var isValid = new A().B.IsValid()
or should I do this:
public class B{
public bool IsValid();
}
public class A{
private B B{get;set;}
public bool IsValid(){
return B.IsValid();
}
}
var result = new A().IsValid();
Is there a problem(according to law) if I access a B's method from A?
Bcreated byAinside it. In your 1st example, it is a public property by whichBcan be set. What is your exact scenario so that it is becoming necessary for you to callA.B.IsValidas againstB.IsValid? In your 2nd example, thegetcan be public. – shahkalpesh Dec 22 '12 at 21:49