Dark Mode
Image

C# Anonymous Functions

C# Anonymous Functions Anonymous function is a type of function that does not has name. In other words, w...

C# Reflection

C# Reflection In C#, reflection is a process to get metadata of a type at runtime. The Syst...

C# Delegates

C# Delegates In C#, delegate is a reference to the method. It works like function...

C# Generics

C# Generics Generic is a concept that allows us to define classes and methods with placeholder. C# compil...

C# Strings

C# Strings In C#, string is an object of System.String class that represent se...

C# Interface

C# Interface Interface in C# is a blueprint of a class. It is like abstract class because all the methods...

Image