viernes, 26 de marzo de 2010

.NET Value Types

Value types are the simplest types in the .NET framework (mainly numeric, booleans, and simple chars), always are derived from System.Value


Value types can be separated in three main types:


  • Built in types (these are the types with which other types are built)
  • User defined types (structures)
  • Enumerations (related symbols that have fixed values)

Declaring value types

  • Using a type requires to declare a symbol as an instance of that type.
  • VT have an implicit constructor (new keyword is not necessary as you do with classes).
  • Default constructor assigns a default value (usually null or zero)

Example (C#):

bool symboName = true;

Nullable

When you work with reference types you can see if the object is null to see if the valuye contains something, in the VT you cannot assign a null reference point to a value type.

To let yo know wheter a value has not been assigned you can declare the variable as nullable (the classic example is an answer for a question (Yes/No), when do you know if the question has been answered?)

Nullable answer = null;

or

bool? answer=null; //Shorthand notation

When you declare a VT as nullable it enables the HasValue and Value members (you can use them for validation purposes)

if (answer.HasValue)

doSomething();

User-Defined types.

Commonly called structures. Like other value types these are stored in the stack and they contain their data directly. The structures behave nearly identical to classes.

Structs are a composite of other types that make ir easier to work with related data.

example of structure:

System.Drawing.Point p = new System.Drawing.Point(20,30);

Declaring an structure.

struct Person

{

DateTime _birth;

string _name;

public Cycle(birth, name)

{

doSomething();

}

}

Structures are usually more efficient than classes if the type meets all of these criteria.

  • Logically represents a single value
  • Has an instance size less than 16b
  • Will not be changed after reation, and will not be casted to a reference type.

Enumerations

The enumerations are related symbos that have fized values, you can provide a list of choices for developers with an enumeration.

The enums simplify coding an improve code readability by enabling you to use meaningful symbols instead of simple numeric valuyes.

Example.

enum titles : int {Mr, Mrs, Ms, Dr};

Chapter 1 ".NET Framework fundamentals"

Like i said, i will take as base the training kit book, so i am going to list the exam objectives of the chapter 1 "Framework fundamentals", and going forward i will develop each of the topics.


"Framework fundamentals" Objectives

.NET system types:

  • Value types
  • Reference types
  • Attributes
  • Generic Types
  • Exception classes
  • Boxing and UnBoxing
  • TypeForwadedToAttribute class

.NET Framework Interfaces
  • IComparable
  • IDisposable
  • IConvertible
  • ICloneable
  • IEquatable
  • IFormattable

Events and Delegates:

  • Delegate class
  • EventArgs class
  • EventHandler class

jueves, 25 de marzo de 2010

.NET certification path

The MCPD Path.

I think that for people that is interested in get certified is good to know which exams has to approve to follow the desired area of the certification.

As everybody can see 70-536 is a prerequisite (.NET Framework essentials) for everything you want to do within the framework, and after that the other examen that i selected is 70-528 (Web Development).

The purpose of this blog

Hi all, my name is Oswaldo Vela and I am preparing to take the exams 70-536 and 70-528 for the MCPD of .NET.

To clarify on this, i have already studied and worked with most of the topics of the book 70-536 but to take this exam i will start again from the begin of the book and I will try to write the most interesting points for each chapter just as a final study guide to be reviewed in the previous days to take the exam instead of taking notes in paper.

Some pieces of code and probably textual reference from books will be added as part of the articles code also will be added (could be custom code or from 3rd party pages, books etc), because of this I want to be clear that there are no lucrative interest on doing this, this is only to share the knowledge within the IT community, So if you feel that there is any copyright violation or something about that write me and i will take the necessary actions.

Regards.