SOLID Design Principles in C#

SOLID principles are used to design the application in such a way that it should be easily maintainable and upgradable. Any software should be written as simple as possible to produce the desired result, however, if the software is not designed properly then it’s a nightmare to maintain and upgrade the software. SOLID principles make … Read more

Check If String Is DateTime in C#

This post is helpful to Check If String Is DateTime in C# C# has following method to work with DateTime Convert.ToDateTime DateTime.Parse DateTime.TryParse DateTime.TryParseExact All these methods converts the string representation of a date and time to its DateTime equivalent. The main difference among these methods is how they handle the wrong input. Please Click Here … Read more

SOLID Design Principles in C#

SOLID principles are used to design the application in such a way that it should be easily maintainable and upgradable. Any software should be written as simple as possible to produce the desired result, however, if the software is not designed properly then it’s a nightmare to maintain and upgrade the software. SOLID principles make … Read more

Object-Oriented Programming Concepts in C#

Object-Oriented Programming is a programming pattern based on the concept of an object (name itself is explanatory). This object can contain properties and methods. In other words, an object can hold the data and perform operations on that data. C# is one of the famous and widely used Object-Oriented Programming languages. This tutorial is focused … Read more

Top 25 C# Interview Questions And Answers

C# (pronounced as C Sharp) is one of the famous and widely used Object Oriented Programming languages. This article is focused on the most frequently asked and important C# Interview Questions and Answers for freshers as well as an experienced software professional.  These questions are gathered based on actual interview experience. Let’s begin to C# interview … Read more