gnome-games
gnome-games copied to clipboard
Coding style: write on line props accessors in one line
A rule to add: one line property getters and setters should be written in one line, hence write this:
public string product_number {
get { return _product_number; }
}
Not this:
public string product_number {
get {
return _product_number;
}
}