tag

home / developersection / tag

Introduction of Threading in C#
c# 26-Aug-2014
Introduction of Threading in C#

In this blog I’m talking about introduction of Thread and Multithread.Thread:Every application runs with at least one thread.  So what is a thread?  A

Encrypt and Decrypt Data with C#
c# 26-Aug-2014
Encrypt and Decrypt Data with C#

In this blog I’m explaining how to encrypt or decrypt data with C#. Encryption:Encryption is the process of translating plain text data into somethin

Reflection in C#
c# 14-Aug-2014
Reflection in C#

In this blog, I’m explaining the concept of reflection class in C#. Reflection allows an application to collect information about itself and also to

Dataset & DataTable
c# 14-Aug-2014
Dataset & DataTable

In this blog, I’m explaining the concept of dataset and datatable. DataSetThe data set represents a subset of the database. It is the class of System

Namespace and Class
c# 13-Aug-2014
Namespace and Class

In this blog, I’m explaining the concept of namespace and class and difference between them.ClassIn the object oriented programming, class is the coll

Method Overloading & Overriding
c# 13-Aug-2014
Method Overloading & Overriding

In this blog I’m explaining method overloading and method overriding. In the Object oriented programming’s polymorphism is the special feature. Polym

Interface
c# 12-Aug-2014
Interface

InterfaceIn this blog I’m explaining Interface.An interface looks like a class, but has no implementation. The only thing it contains are declaration

Delegate
c# 12-Aug-2014
Delegate

In this blog, I’m explaining the concept of delegate. A delegate in C# is similar to a function pointer in C or C++. In C#, a delegate is type safe o

Static class
c# 12-Aug-2014
Static class

In this blog, I’m explaining the concept of static class. Static class is basically like a non-static class but it can never be instantiated. In othe

Properties
c# 12-Aug-2014
Properties

In this blog, I’m explaining the concept of properties. Properties are special kind of class members.  Member variables or methods in a class or stru

Constructor in Abstract Class in C#
c# 09-Jun-2014
Constructor in Abstract Class in C#

Here, I am trying to explain the use of the constructor in the abstract class. I am Considering Shape as the abstract class and Square and rec

combobox in datagridview
c# 09-Feb-2014
combobox in datagridview

 private void dataGridView1_EditingControlShowing(object sender, DataGridViewEditingControlShowingEventArgs e)             ComboBox editingComboBox