.Net Framework
The .NET Framework is a new and revolutionary platform created by Microsoft for developing applications. […]
The .NET Framework is a new and revolutionary platform created by Microsoft for developing applications. […]
When you compile code that uses the .NET Framework library, you don ’ t immediately […]
When you compile an application, the MSIL code created is stored in an assembly . […]
C#, as mentioned earlier, is one of the languages you can use to create applications […]
1. Create a new console application project by selecting File New Project in VS or […]
The first window to look at is the Solution Explorer window in the top right […]
This window (select View Properties Window if it isn ’ t already displayed) shows additional […]
It is often easier to demonstrate code by running it as part of a Windows […]
C# is a block – structured language, meaning statements are part of a block of […]
To indicate comments using the first method, you use /* characters at the start of […]
To use variables, you have to declare them. This means that you have to assign […]
Simple types include types such as numbers and Boolean (true or false) values that make […]
As mentioned in the previous section, you can ’ t just choose any sequence of […]
To recap, recall that you declare variables simply using their type and name: You then […]
Before moving on, it ’ s worthwhile to consider one more important subject — namespaces […]
The bool type introduced in the previous tutorials can hold one of only two values: […]