Search code examples
c#vb.netprogramming-languages

Assigning Standard Names for Controls and datatypes


Using VB.Net and C#.Net.

For Example

Am Using More than one form

If am assigning a variables like this.

Dim a, b as integer Dim c, d as string

This variables cannot be easily understand for everyone(other programmers).

How to assign a Standard Datatype variables,

Standard Variable Means (Everyone can understandable)

And also How to give a standard name for gridview, text boxes, labels etc.


Solution

  • It looks like you are looking for some naming conventions. I've found this document a while back which pretty much describes the most common conventions: (pdf) http://www.icsharpcode.net/TechNotes/SharpDevelopCodingStyle03.pdf

    I hope it helps!