Naming Convention in .NET

  • Thread starter Thread starter Dibyendu Basu
  • Start date Start date
D

Dibyendu Basu

Hi,

We are developing a ASP.NET [C# as code behind page] based
application with SQL Server 2000 as backend. Can you
please tell us some resources/URL in Internet/MSDN which
talks about naming standards and conventions to be used in
a C# based ASP .NET application?

This is a bit urgent.

Thanks in advance.

Cheers
Dibs
 
Sure:
http://msdn.microsoft.com/library/en-us/cpgenref/html/cpconnetframeworkdesignguidelines.asp
These guidelines are intended to help class library designers understand the
trade-offs between different solutions. There might be situations where good
library design requires that you violate these design guidelines. Such cases
should be rare, and it is important that you provide a solid justification
for your decision. The section provides naming and usage guidelines for
types in the .NET Framework as well as guidelines for implementing common
design patterns.
 
Back
Top