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# 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 »

Importance of Coding Standards for .NET Development


Importance of Coding Standards for .NET Development

While coding, is necessary to follows guideline or criterion of coding standard? We have a problem and we are going to write code for that. We are getting what we want then what is the need of terms like coding standard? Are they really useful? In this article we are going to find out answers of our questions…

Coding Standard…?

A coding standard is a set of guidelines, rules and regulations on how to write code which will help programmers/developer quickly read and understand source code conforming to the style as well as helping to avoid introducing faults and misunderstanding.

Coding standards are important because they provide greater consistency and uniformity in writing code between programmers. This ultimately leads to the code that is easier to understand and maintain which reduces the overall cost of the project.


Read the rest of this entry »

Types of Smart Clients Applications


Types of Smart Clients Applications

Smart clients vary greatly in design and implementation, both in application requirements and in the number of scenarios and environments in which they can be used. Smart clients therefore can take many different forms and styles. These forms can be divided into three broad categories according to the platform that the smart client application is targeting:

  • Windows smart client applications
  • Office smart client applications
  • Mobile smart client applications


Read the rest of this entry »

Smart Client – figure out the design challenges and the solutions.


Smart Client – figure out the design challenges and the solutions.

Smart clients are easily deployed and managed client applications that provide an adaptive, responsive and rich interactive experience by leveraging local resources and intelligently connecting to distributed data sources

To fully understand how smart clients combine the benefits of rich clients and thin clients, it is useful to examine the history and underlying principles behind the rich and thin client application models, and review some of the advantages and disadvantages associated with each.


Read the rest of this entry »

New Features in the .NET Framework Version 3.5


Microsoft released ASP.NET 3.5 on November 19, 2007. Along with it, was released Visual Studio 2008. In this version Microsoft enhanced features of .NET Framework Version 3.0 and add some new too. Now we will take a look at new and enhanced features in the .NET Framework version 3.5. The which get updated or added by Microsoft are:

  • .NET Compact Framework
  • ASP.NET
  • Add-Ins and Extensibility
  • Common Language Runtime
  • Cryptography
  • Networking
  • Windows Communication Foundation
  • Windows Presentation Foundation
  • Windows Workflow Foundation
  • Windows Forms
  • LINQ
  • Expression Trees
  • Programming Languages

Also Read

New Features in the .NET Framework Version 4.0


Read the rest of this entry »