Creative

What is Non-Generic Collections in C#

Intruduction : In this blog we can what is Non-Generic Collections in C#. What is Non-Generic Collections in C#? Different datatypes are represented in elements of non-generic collections. The non-generic collections are as follows: BitArray, ArrayList. It represents an ordered group of ob...

Creative

What is Generic Collections in C#

Introduction : In this blog we can see what is generic collections in c#. What is Generic Collection in C#? A generic collection is highly typed (it can only hold one type of object) to reduce runtime type mismatches and to increase speed by avoiding boxing and unboxing. Generic collection...

Creative

What are Constructors in C#

Introduction : In this blog we will see the primary constructors in c#. What is a  constructor in C#? A constructor is a particular class method that is invoked whenever a new instance of the class is created. A constructor, like a method, contains a set of instructions that are execu...

Creative

How to convert IEnumerable to ReadOnlyCollection in C#

Introduction: In this blog we will see how to Convert IEnumerable to ReadOnlyCollection in C#. What is IEnumerable in C#? All non-generic collections that can be enumerated use IEnumerable as their underlying interface. GetEnumerator, the only method in it, returns an IEnumerator. IEnumera...

Creative

Difference between Field & Property in C# .Net

/*! elementor – v3.13.3 – 28-05-2023 */ .elementor-column .elementor-spacer-inner{height:var(–spacer-size)}.e-con{–container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(–container-widget-width,var(...

Creative

What is IEnumerable in C# .Net

/*! elementor – v3.13.2 – 11-05-2023 */ .elementor-column .elementor-spacer-inner{height:var(–spacer-size)}.e-con{–container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(–container-widget-width,var(...

Creative

What is Assembly in C# .Net

Introduction : In this blog we can see what is a assemblies in C# .Net. What is a .Net Assemblies : The assembly format used by Microsoft.NET components is known as.NET. Dot NET assemblies could exist as an executable (.exe) file or a dynamic link library (DLL) file, depending on whether t...

Creative

Serialize And DeSerialize JSon in C# .Net

Introduction :  In this C# tutorial we will see how to serialize & desirialize json in c# .Net. Serialization & Deserialization in C# .Net : These days, a common format for transferring data across programmes is JSON data. While creating a.NET application, converting JSON data to....

Creative

Plugins and Event Execution Pipeline in Dataverse

Plugins in Dataverse:- ->Plugin is a custom event handler that executes in response to a specific event raised during processing a Dataverse operation.  ->It is a custom business logic implemented using custom class as a Class Library in .NET framework. ->It is compiled into ...

Creative

C# top 15 Interview Questions

In this blog we can see top 15 interview Questions in C#. 1.What are Properties in C#? A property in C# is a class member that offers a method to read, write, or calculate the value of a private field. It provides a public interface for the access and modification of data held by a [&helli...