All Questions
1 question
1
vote
2
answers
696
views
Is it a good idea having default static variables for new instances?
OK let's say I have something like this:
public class MyObject {
public static int DefaultValue = 9
private int _value = DefaultValue;
public int Value { get { return _value; } set { ...