Users Pricing

tag

home / developersection / tag
Delegate in C#
c# 23 Jun 2012
Delegate in C#

Basically it is similar like the old "C" age function pointer, where functions can be assigned like a variable and called in the run time based on dynamic conditions. C# delegate is the smarter version of function pointer which helps software

Some SQL Functions
c# 15 Jun 2012
Some SQL Functions

This tutorial is to make you aware of some functions that are built in to SQL.

How to add a right click context menu to the tray icon
c# 15 Jun 2012
How to add a right click context menu to the tray icon

In this tutorial I will show you how to do this in a C# application using Microsoft Visual Studio.

How to minimize form in Taskbar Using NotifyIcon in C#.NET
c# 15 Jun 2012
How to minimize form in Taskbar Using NotifyIcon in C#.NET

In this Article, I will tell you guys, how to minimize the form in Taskbar Using NotifyIcon in Windows Forms using C#.NET:

What is Encapsulation in c#
c# 06 Jun 2012
What is Encapsulation in c#

Encapsulation is the procedure of covering up of data and functions into a single unit (called class). Encapsulation hides the internal state and behavior of an object. Encapsulation is a process of hiding all the internal details of an object

Introduction to inheritance
c# 06 Jun 2012
Introduction to inheritance

Inheritance is the ability to create a class from another class, the "parent" class, extending the functionality and state of the parent in the derived, or "child" class.

Inheritance with virtual function
c# 06 Jun 2012
Inheritance with virtual function

For example create Employee class contains information about an Employee. Create another Type class that inherits the Employee class. Type class contains information employee is fulltime or part-time and also has a Display function that is overridden

Abstraction in c#
c# 06 Jun 2012
Abstraction in c#

Abstract class is having abstract methods. Abstract classes provide a way to force an inherited class to implement and override these abstract methods.

Lambda Expression in C#
c# 21 Mar 2012
Lambda Expression in C#

Lambda expressions reduce the amount of work needed when iterating through data. All enumerable data is queryable through LINQ with use of a SQL-like query (what I mean by that is the query looks like SQL, but is a different flavor).

Custom Message Box in C#.NET
c# 08 Feb 2012
Custom Message Box in C#.NET

Hi, in this article I am going to explain how to create custom message box in c#.net. As we know that by using MessageBox class to display message box but

Events With Delegate
c# 23 Dec 2011
Events With Delegate

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace Events // Event Publisher