Is C# is dying

Is C# Dying?

C# came out in 2002 so it’s really not old if you look at Java, JavaScript, PHP, and Python all of which are much older languages don’t mean that c-sharp isn’t mature though. It just means that it’s actually a young language in terms of the other ones out there that you think about. It’s…

Read More

Type Checking in C#

The purpose of this article is to introduce you to C# type checking. Using typeof, we can determine the type of built-in types such as int, float, etc, and user-defined types such as classes, interfaces, delegates, and structs. There is no way to pass user-defined type objects and built-in type variables through typeof. The typeof…

Read More