From what I've been reading online, if the field is private it can start with a leading _. However when I do the following it complains? Is it because I'm returning the private field? Doesn't make sense to me since anything consuming this has no idea about _myObject so why would it matter?
private MyBusinessObject _myObjectBO;
protected MyBusinessObject MyObjectBO
{
get { return _myObjectBO ?? (_myObjectBO= new MyBusinessObject()); }
}
MyObject? – SLaks Feb 3 at 0:48My.Namespace.MyService.MyObjectBOis not CLS-complaint". I'm just using this in a WCF Service to call my BO which has the usual methods to get data etc. – Jisaak Feb 3 at 1:07MyBusinessObjectlook like? That's where the issue is. – svick Feb 3 at 1:12MyBusinessObject(the type of the property) is not compliant. – SLaks Feb 3 at 1:13cls-compliantwhen they added it to the solution... Message seemed a bit misleading since it was anchored on the object, but I guess if I would of referenced the rest of the objects I maybe would of thought about the dll class library itself. Either way, if one of you write an answer I'll mark it as answered. Thanks again! – Jisaak Feb 3 at 1:25