EDAURU / css-object

0 stars 0 forks source link

Why using the C# code style #1

Open Bonsanto opened 9 years ago

Bonsanto commented 9 years ago

Define the programming reasons why in this project We use the C# notation, in example:

this.Font = {
        font_family: [],
        font_size: [],
        font_style: [],
        font_variant: [],
        font_weight: []
};

Instead of:

this.font = {
        font_family: [],
        font_size: [],
        font_style: [],
        font_variant: [],
        font_weight: []
};
Zcyon commented 9 years ago

Wait, what? Isn't this a minor thing?

Bonsanto commented 9 years ago

@Zcyon Minor or not it should be answered.

Zcyon commented 9 years ago

I see... Then I guess there is no real reason for using C# notation. I would say that it is the programmer's style.