Why "Properties that return arrays are prone to code inefficiencies"?
Hi, I have a piece of code which deals with customers stored in database. There is an object Customer, and it has, among other, two properties of type byte[]: one property for password salt, the second one for password hash. Checking the code with FxCop, I see that it complains (CA1819, Performance Rules) that: "Properties that ret...