2012-09-14
2
comments
9/14/2012 12:05:00 AM
What is the meaning of the word "interface" in English?
If you look up the word "interface" in the dictionary you will find that it can be defined in more than one way as follows:
A surface regarded as the common boundary of two bodies, spaces, or phases
The facts, problems, considerations, theories, practices, etc., shared by two or more disciplines, procedures, or fields of study: the interface between chemistry and physics
A common boundary or interconnection between systems, equipment, concepts, or human beings
Communication or interaction:...
2012-09-07
0 comments
9/07/2012 07:07:00 PM
Events & Delegates In C# - Win Forms Controls

I encourage you to first read Events & Delegates In C# - The Concept to understand the main concept of Events & Delegates in C# before starting reading this article.
Assume that you need to make a win forms control to be used by wide range of users for wide range of purposes. This control will include 3 sliders which the control user can move and change their values at rum-time and accordingly an action will happen. This action may be...
2
comments
9/07/2012 04:55:00 PM
Events & Delegates In C# - The Concept
I encourage you to read Delegates In C# - The Definition article first to understand the main definition of delegates in C#.
The main essence of object oriented programming (OOP) is that it
simulates the life we live. Before OOP, the programing approaches were
oriented to getting the job done by writing some code to apply some
logic. But, OOP was the start point to try to introduce a new approach
which is more related and similar to the way we, human beings, live,
perform and communicate. That's why when I try to understand a new
concept...
2012-09-05
0 comments
9/05/2012 08:28:00 PM
Delegates In C# - The Definition

What does the word "delegate" mean?
The word "delegate" in English means: {A person authorized to act as representative for another; a deputy or an agent} or {A representative to a conference or convention} or {To give a particular job, duty, right, etc. to someone else so that they do it for you}
What does "delegate" mean in C#?
Back from the days of C++, the main concept of delegates existed but with another name; pointer to function. ...
2012-09-04
5
comments
9/04/2012 09:52:00 PM
4 Ways To Send Parameters To A C# Method

Actually, the way a parameter can be sent to a method depends on two factors:
Type of object/variable to be sent to the method
Value type
Reference type
Way of sending the parameter
By value
By reference
So, just by guessing, we can say that we have 4 ways to send a parameter to a method. These 4 ways are:
Sending "Value Type", "By Value" ............................... Val By Val
Sending "Value Type", "By Reference" ...........................
Subscribe to:
Posts (Atom)