category

home / developersection / category

Respecting your live chat app agents means educating them to respect your clients.
c# 04-Jul-2018
Respecting your live chat app agents means educating them to respect your clients.

Looking for the chat plugin for website? Trust the best to boost your customer support efforts. LiveChatInc - The fastest way to help your customers.

Finding the Best Online Keno
c# 18-Apr-2018
Finding the Best Online Keno

The Most Popular Online Keno

Financial Tips For Small Business Owners: How To Stay On Top Of It All
c# 12-Nov-2017
Financial Tips For Small Business Owners: How To Stay On Top Of It All

It is important for small business owners to handle their finances well. Jason Lewis offers some practical tips and reminders on how they can manage it efficiently.

What is destructor in C# and Working?
c# 14-Sep-2017
What is destructor in C# and Working?

Destructors are used to destruct instances of classes. In this article I will explain how different C# destructors are when compared to C++ destructors.

Teaching coding from the Metal Up or from the Glass Back?
c# 12-Apr-2017
Teaching coding from the Metal Up or from the Glass Back?

Maria on my team and I have been pairing (working in code and stuff together) occasionally in order to improve our coding and tech skills.

Cookies in C#
c# 06-May-2016
Cookies in C#

This article provides an overview of working with cookies in ASP.NET applications. I will show you the mechanics of working with cookies in ASP.NET.

Session in C#
c# 06-May-2016
Session in C#

When we are working with an application on your computer, you open it, do some changes and then you close it. This is much like a Session.

DLL in C#
c# 05-May-2016
DLL in C#

A dynamic-link library (DLL) is a module that contains functions and data that can be used by another module (application or DLL).

Inheritance in C#
c# 05-May-2016
Inheritance in C#

Inheritance means parent class property access child class like methods, members etc, and also reused code.

Interface in C#
c# 05-May-2016
Interface in C#

Interfaces define properties, methods, and events, which are the members of the interface. Interfaces contain only the declaration of the members. It is the responsibility of the deriving class to define the members.

Abstract class in C#
c# 05-May-2016
Abstract class in C#

A Method without any method body is known as an abstract, what the method contain only declaration without any implementation & should be declare by only the ‘abstract modifier’.

Method overriding in C#
c# 05-May-2016
Method overriding in C#

Method overriding is a feature that allows you to invoke functions (that have same signatures) that belong to different classes in the same hierarchy of inheritance using the base class reference.