Creative

How to Add Custom Page in Model-driven App

In this blog we can see how to add a custom page in Model-driven App using power Apps. Step-1 Login into power apps using “Make.powerapps.com” Step-2 After step 1 navigate to solutions & select your solution and navigate to Apps  Step 3: After step 2 select your existing m...

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

Advantages of Automated Flow in Power Automate.

Introduction: In this blog we will see some Advantages of automated Flow in Power Automate. When scheduling messages in Microsoft Teams, there are various benefits to implementing an automated flow over posting manually. 1.Time savings2.Increased efficiency3.Consistency4.Reduced errors5.Fl...

Creative

How to send an HTTP Request to SharePoint

In this blog we can see how to send an http request to  share point in power automate . Step 1 : Login into “Make.powerAutomate.com” & navigate to create -> Instant cloud flow Step 2 After selecting the instant cloud flow select manually trigger flow button form the tri...

Creative

Interfaces in TypeScript

In this blog we can see the interfaces in TypeScript. Introduction : An interface is a syntactical contract to which an entity must adhere. In other words, an interface specifies the syntax that all entities must follow. Interfaces define the properties, methods, and events of the interfac...

Creative

What are Variables in TypeScript

In this blog we can see variables in TypeScript . Variables in TypeScript :  TypeScript variables can be referred to by a name called an identifier and are designated storage sites to hold a type of or dynamic kind of value. Syntax :  var <identifier> [: type-annotation] [= value] ...

Creative

What is Tuples in TypeScript

In this blog we can see what are the Tuples in TypeScript. Tuples in TypeScript :  Tuple is a new data type introduced by TypeScript. Tuples can have two different data types as values.Tuples can be used in the same way as any other variable. They can be used as function call arguments. S...

Creative

What is Inheritance in TypeScript

In this blog we will discuss about  Inheritance in TypeScript . Introduction Inheritance : Inheritance is the ability of one class to extend the functionality of another. The former is referred to as the Child Class or Sub Class, while the latter is referred to as the Parent Class or Supe...

Creative

How to use Getters and Setters in type script

In this blog we  will see  how to use getters and setters in TypeScript . Introduction : Getters and setters are two terms that can be used in TypeScript to obtain and modify the values of class members.By using the dot operator with the object of the specific class as a reference, users...