category

home / developersection / category

Substring methods in C#
c# 13-Nov-2014
Substring methods in C#

In this blog I’m explaining about Substring () method of string class in C#. Substring:The Substring method is used to grab characters from a string

Convert Text Document to PDF File
c# 14-Oct-2014
Convert Text Document to PDF File

In this blog I’m explaining about how to convert text document to pdf file in c#.Description:-About classes used:-1.OpenFileDialogThis class is use to

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