Tips n Tracks

  • Increase font size
  • Default font size
  • Decrease font size
  • default color
  • black color

Reference

Sample image

Microsoft .NET Framework Get Details.

Sample image

Microsoft .NET Framework Get Details.

Reference

Sample image Microsoft .NET Framework Get Details.
Sample image

Microsoft .NET Framework Get Details.


C# Language

C# Coding Standards and Guidelines: Coding Practices


C# Coding Standards and Guidelines: Coding Practices

1. Use meaningful namespace such as the product name or the company name.

2. Avoid fully qualified type names. Use the using statement instead.

3. Avoid putting a using statement inside a namespace.

4. Group all framework namespaces together and put custom or third-party namespaces underneath.


Read the rest of this entry »

C# Coding Standards and Guidelines: Naming Conversions and Style


C# Coding Standards and Guidelines: Naming Conversions and Style

1) Use Pascal casing for type and method and constants.

public class SomeClass
{
const int DefaultSize= 100;
public SomeMethod ()
{}
}


Read the rest of this entry »