category

home / developersection / category

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

Writing Data to EXCEL Sheet using C#
c# 05-Jan-2012
Writing Data to EXCEL Sheet using C#

Explain how to write data into the excel sheet using C#.

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

Delegate and Event in C#
c# 29-Oct-2011
Delegate and Event in C#

Delegate allows the programmer to encapsulate a reference to a method inside a delegate object. The delegate object can then be passed to code which can call the referenced method,

See The Whole Data in DataGridView With Selecting A Value From ComboBox:
c# 08-Oct-2011
See The Whole Data in DataGridView With Selecting A Value From ComboBox:

See The Whole Data in DataGridView With Selecting A Value From ComboBox:In this article I will give an example that how to display the data in the dat

The Threading in C# with Example
c# 29-Aug-2011
The Threading in C# with Example

The Threading in C# with ExampleC# supports parallel execution of job or program code through multithreading. Multithreading contains two or more pr

Read Microsoft Word Document File by using C#
c# 29-Aug-2011
Read Microsoft Word Document File by using C#

Read Microsoft Word Document File by using C#This is an efficient way through which we can read Microsoft Word Document file (or .docx extension fil