Eduardo Isaac Ballesteros

Hands-On Object-Oriented Programming with C#. Generics

Raihan Taher What are Generics? In C#, generics are used to create classes, methods, structs and other components that are not specific, but general. This... Details
Eduardo Isaac Ballesteros

Hands-On Object-Oriented Programming with C#. Events and Delegates.

Raihan Taher What is a delegate? A delegate is a proxy, an alternative, or a representative of someone else. For example, we may read in... Details
Eduardo Isaac Ballesteros

Hands-On Object-Oriented Programming with C#. Implementation of OOP in C#.

Raihan Taher Interfaces A class is a blueprint, which means it contains the members and methods that the instantiated objects will have. An interface can... Details
Eduardo Isaac Ballesteros

Hands-On Object-Oriented Programming with C#. Characteristics of OOP.

Raihan Taher OOP is one of the most important programming methodologies nowadays. The whole concept depends on four main ideas, which are known as the... Details
Eduardo Isaac Ballesteros

Hands-On Object-Oriented Programming with C#. Classes, Objects, Variables, Methods and Constructors.

Raihan Taher C# is a fully Object oriented programming language "OOP", the first word is object, an object is something that can be seen, felt,... Details
Eduardo Isaac Ballesteros

Hands-On Object-Oriented Programming with C#. Overview of C#.

Raihan Taher Overview of C# as a Language With the introduction of modern day programming practices, it is evident that developers are looking for more... Details
Eduardo Isaac Ballesteros

C# Programmer’s Cookbook Part 2

Allen Jones Add, Substract, and Compare Dates and Times Problem: You need to perform basic arithmetic operations or comparisons using dates and times. Solution: Use... Details
Eduardo Isaac Ballesteros

C# Programmer’s Cookbook Part 1

Allen Jones Manipulate the Contents of a String Efficiently Problem: You need to manipulate the contents of a String object and want to avoid the... Details