What advice/suggestions/guidance would you provide for designing a class that has upwards of 100 properties?
When I design a class I often have trouble deciding if I should throw an exception or have 2 func with the 2nd returning an err value. In the case of 2 functions how should I name the exception and no
All, I recently posted this question on DAL design.From that it would seem that passing a reference to an object into a function, with the function then populating that object, would be a good interf
I have a class, which returns three properties. First property is dependent on some parameter, second one is dependent on the first property and third one is dependend on the second property.