gnome-games icon indicating copy to clipboard operation
gnome-games copied to clipboard

Coding style: write on line props accessors in one line

Open Kekun opened this issue 8 years ago • 0 comments

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;
    }
}

Kekun avatar Jul 27 '16 15:07 Kekun