PinnedStatic Class vs Singleton Class in C# OOPA static class is a class in which we can not create an instance or object of this class. Every member inside a static class must be…Mar 29, 20233Mar 29, 20233
PinnedWhat is a “Singleton Class” in C#?A “Singleton” is an object-oriented programming concept in C#. It is a design pattern that restricts creating classes in more than one…Mar 27, 20231Mar 27, 20231
PinnedDifference Between “Field” and “Property” in C# OOPIn object-oriented-programming Fields and PropertiesMar 21, 20232Mar 21, 20232
Working Principles of Web Pages & MVCA client is someone or something (such as a web browser) that wants to open a web page. The client sends a request which passes through the…May 8, 2023May 8, 2023
What is ASP.NET CORE?ASP.NET is a tool that is used to create web pages and web applications. ASP.NET Core is a tool that enables us to work with ASP.NET Web…May 8, 2023May 8, 2023
Different Syntaxes & Usages In C# OOP: Part 1Object Initialization, Method Return Types, List Collections, etc.May 5, 2023May 5, 2023
Fields, Reference-Types & InstancesAre fields that are declared as reference types of classes inside of other classes creating instances of those classes by default?May 4, 2023May 4, 2023
Difference Between Reference-Type & Value-Type Variables in C#Reference-type variables store a reference to an object, to a class, or string for example. When you assign a reference type variable to…May 4, 2023May 4, 2023