Coding standards

There are three supported .NET coding convention categories: Language conventions .NET code style settings “this.” qualifiers This style rule can be applied to fields, properties, methods, or events. Prefer the code element not to be prefaced with this. Prefer fields not to be prefaced with this. //Right capacity = 0; //Wrong this.capacity = 0; Prefer properties not to be prefaced with this. //Right ID …

Coding standards Read More »