In C# I would like to code this for all my Static variable:
public static int Secs {
get {
return secs;
}
set {
secs = value;
PropertyChanged();
}
}
Is there any shortcut way to achieve the same thing. Sorry I don't mean a shortcut way to write it like typing "prop". I mean some way that all of the above could be written in one line.