Feeds:
Posts
Comments

Archive for the ‘C#2.0 Exam 70-536’ Category

Introduction When an assembly has been loaded in an Application Domain, the embeded code can be executed. This code can be executed in the current Application Domain or in another one, we will see how to proceed by differents way. For all the following examples we will use a namespace MyNameSpace containing 2 classes : [...]

Read Full Post »

Shallow Copy VS Deep Copy in .Net

Introduction : In the .Net Framework there is 2 distincts memory space to store our objects: STACK and HEAP. On the stack is stored value types of .net framework as struct, enum, primitives types…and all what inherit from System.Value. On the heap is stored reference types of .net framework as all object which doesn’t inherit [...]

Read Full Post »

AMP: Asynchronous Model Programing

Introduction Developping a multithread application can be realised in several ways. Let’s see about one of these ways : using Asynchronous delegates calls. In this article we will see step by step the interrest of using  asynchronous delegates calls, by 4 examples. Ιrst Example :  Synchronous delegate call Output : //Waiting for 5 seconds before having [...]

Read Full Post »

Follow

Get every new post delivered to your Inbox.