What is the difference between constants and read-only variables that are used in programs?

Constants perform the same tasks as read-only variables with some differences. The differences between constants and read-only are Constants: Constants are dealt with at compile-time. Constants supports value-type variables. Constants should be used when it is very unlikely that the value will ever change. Read-only: Read-only variables are evaluated at… Continue reading

What is a data type? How many types of data types are there in .NET ?

A data type is a data storage format that can contain a specific type or range of values. Whenever you declare variables, each variable must be assigned a specific data type. Some common data types include integers, floating point, characters, and strings. The following are the two types of data… Continue reading

Difference between VSS and VSTS Team Foundation

The Microsoft Visual Studio 2005 product-line offers two choices for software change management: 1. Visual SourceSafe 2005 2. Team Foundation (TF). Visual SourceSafe is a source control tool for professional software developers. Team Foundation is a change management system that provides integrated source control, issue tracking, and process management for… Continue reading