August 2015
Beginner
1075 pages
40h 42m
English
All classes, structures, and interfaces you create in .NET are considered types. That is, they define a specific type of data. The underlying .NET Framework Base Class Library also provides strong types. In fact, the .NET languages of both C# and VB are based on strongly typed objects. This means when you define a variable you create an instance of a strongly typed class. The .NET runtime can then rely on this type information for handling casting, comparisons, and other rules.
A number of built-in types (classes) are used for common programming needs. These built-in types are referred to as data types and represent things such as a string of characters or a numeric value. You work with these data types ...
Read now
Unlock full access