0
votes
Choosing when to instantiate classes
I am not completely I understand your complete problem.
But as far as I understand it right now, the performance/memory benefit will be rather minor. Therefore I would definitely favour the …
1
vote
How to avoid dependencies between Enum values in code and corresponding values in a database?
I do not know what the best solution is, I would like to hear that.
Our solution is to explicitly type the enum like
public enum MyEnum : int
{
None =0,
Value = 1,
Anothe …
