Skip to content

Execute Commands

Software Application Articles

  • Home
  • NET Core
    • ASP.NET Core
    • Blazor
    • dotnet cli
    • WPF
  • Visual Studio
  • AI & ML
  • Design Patterns
  • Tools

How to consume REST API in Blazor Application

April 22, 2020January 28, 2021 TauqirBlazor, NET Core 4520 views
How to consume REST API in Blazor Application 1

In this blog post, we will discuss how to consume REST API in Blazor Server Application using the .NET Frameworks HttpClient class, and will cover how to invoke GET, POST, PUT and DELETE APIs and display the method responses using […]

Read more

Blazor Lifecycle Methods in .Net Core 3.1 – Basic Explanation

April 15, 2020January 28, 2021 TauqirBlazor, NET Core 2643 views
Blazor Lifecycle Methods in .Net Core 3.1 - Basic Explanation 2

The Blazor framework provides synchronous and asynchronous versions of application lifecycle methods and can be used to perform additional initialization and checks on the component. In this blog, we are going to look into these Blazor lifecycle methods and understand […]

Read more

A Simple way to Call Javascript in Blazor Application

April 11, 2020January 28, 2021 TauqirBlazor, NET Core 3193 views
A Simple way to Call Javascript in Blazor Application 3

In this blog post, we will discuss how to call JavaScript in Blazor application. Blazor is a new framework provided by Microsoft to build interactive client-side web applications using C# programming language and Razor syntax on top of the .NET […]

Read more

Creational Design Patterns

April 4, 2020January 28, 2021 TauqirDesign Patterns 7384 views
design-patterns-oop-csharp

Design Pattern provides a guideline (best practices) to solve a problem that might occur in software development. These Design Pattern solutions were obtained by various trials and test methods used by a huge number of developers over a very long […]

Read more

Builder Design Pattern in C#

March 25, 2020January 28, 2021 TauqirDesign Patterns 866 views
design-patterns-oop-csharp

This is the fifth post of the Design Pattern series and in this blog post, we will discuss the Builder Design Pattern and its implementation in C# programming language. The Builder Design Pattern is used to create an object and […]

Read more

Prototype Design Pattern in C#

March 24, 2020January 27, 2021 TauqirDesign Patterns 1040 views
design-patterns-oop-csharp

This is the fourth post of the Design Pattern series and in this blog post, we will discuss Prototype Design Pattern and its implementation in C# programming language. The Prototype Design Pattern is used to clone an existing object and […]

Read more

Top 5 Blazor Component Libraries

March 22, 2020January 27, 2021 TauqirBlazor, NET Core 7243 views
Top 5 Blazor Component Libraries 4

Blazor is a new framework provided by Microsoft to build interactive client-side web applications using C# programming language and Razor syntax on top of the .NET Core framework. Blazor application can be hosted on a server as a Server Application […]

Read more

Abstract Factory Design Pattern in C#

March 22, 2020January 27, 2021 TauqirDesign Patterns 1049 views
design-patterns-oop-csharp

This is the third post of the Design Pattern series and in this blog post, we will discuss “Abstract Factory Design Pattern” and its implementation in C# programming language. The Abstract Factory Pattern is used to instantiate an object and […]

Read more

Factory Method Pattern in C#

March 11, 2020January 27, 2021 TauqirDesign Patterns 910 views
design-patterns-oop-csharp

Design Patterns are one of the most important aspects of software design and architecture. In this blog post, we are going to discuss the “Factory Method Pattern” and see how to implement the same in the C# programming language. The […]

Read more

Singleton Design Pattern in C#

February 27, 2020January 27, 2021 TauqirDesign Patterns 576 views
design-patterns-oop-csharp

Design Patterns are one of the most important aspects of software design and architecture. In this blog post, we are going to discuss the “Singleton Design Pattern” and see how to implement the same in the C# programming language. The […]

Read more

Introduction to Design Patterns

February 26, 2020January 27, 2021 TauqirDesign Patterns 511 views
design-patterns-oop-csharp

A Design Pattern is a solution to a repeatable problem that occurs most commonly in software design. In other words, a Design Pattern provides a guideline (best practices) to solve a problem that might occur in software development. These Design […]

Read more

Microsoft C# Version History

February 21, 2020January 27, 2021 TauqirNET Core, Visual Studio 767 views
Microsoft C# Version History 5

The C# programming language was first released by Microsoft in 2002 along with the new .NET Framework 1.0 and Visual Studio.NET 2002. Currently, it stands as the seventh most used programming language in the world. (source: StackOverflow 2019 survey ). […]

Read more

Microsoft .NET Core Versions History

February 21, 2020January 27, 2021 TauqirNET Core, Visual Studio 491 views
.NET Core

The Microsoft .NET Core Framework is a free, open-source and managed framework for Windows, Linux, macOS and can also be used to build devices, cloud, and IoT applications. The framework provides a way to write code once and execute on […]

Read more

Microsoft .NET Framework Version History

February 19, 2020January 27, 2021 TauqirVisual Studio 2125 views
.NET Framework

Microsoft released the first version of .NET Framework in the year 2002. The framework introduced “Managed Code” into being, code written for .NET Framework was now compiled into Microsoft Intermediate Language (MSIL) and these MSIL were converted into platform-dependent machine […]

Read more

Introduction to WPF in .NET Core

February 17, 2020January 27, 2021 TauqirNET Core, WPF 1413 views
WPF

Windows Presentation Foundation (WPF) is a new presentation framework to build visually aesthetic Windows desktop applications. The WPF framework allows a user to develop a rich user interface from the list of WPF framework features like XAML, media types, rich […]

Read more

Posts navigation

Older posts
Newer posts

Tags

Blazor Application (9) Design Patterns (15) dotnet cli (12) Machine Learning (6) NET Core (29) NET Core Web (14) terminal (6) tools (10) Visual Studio 2019 (14) WPF (4)

Recent Posts

  • Top 5 Integrated Development Environments (IDE)
    Top 5 Integrated Development Environments (IDE)
  • Top 7 Web Frameworks to Learn and Focus on in 2021
    Top 7 Web Frameworks to Learn and Focus on in 2021
  • Top 7 Programming Languages to Focus on in 2021
    Top 7 Programming Languages to Focus on in 2021
  • Structural Design Patterns
    Structural Design Patterns
  • Bridge Design Pattern in C#
    Bridge Design Pattern in C#

Design Patterns

  • Structural Design Patterns
    Structural Design Patterns
  • Bridge Design Pattern in C#
    Bridge Design Pattern in C#
  • Decorator Design Pattern in C#
    Decorator Design Pattern in C#

NET Core

  • How to publish a Blazor Server Application to IIS
    How to publish a Blazor Server Application to IIS
  • The difference in Blazor Server and WebAssembly Application
    The difference in Blazor Server and WebAssembly Application
  • Exploring Blazor WebAssembly App Project Structure
    Exploring Blazor WebAssembly App Project Structure

Development Environment

  • Important Debugging Shortcuts of Visual Studio 2019
    Important Debugging Shortcuts of Visual Studio 2019
  • Top 7 Visual Studio 2019 extensions for Web Projects
    Top 7 Visual Studio 2019 extensions for Web Projects
  • Top 10 Productivity Tips and Tricks in Visual Studio 2019
    Top 10 Productivity Tips and Tricks in Visual Studio 2019

Machine Learning

  • Machine Learning Model Generation – Simple Generic Process
    Machine Learning Model Generation – Simple Generic Process
  • Datasets for Machine Learning – Free to use
    Datasets for Machine Learning – Free to use
  • AI vs ML vs DL – The basic differences
    AI vs ML vs DL – The basic differences

Categories

  • AI & ML
  • ASP.NET Core
  • Blazor
  • Design Patterns
  • dotnet cli
  • NET Core
  • Tools
  • Visual Studio
  • WPF
  • About
  • Disclaimer
  • Privacy Policy
  • Contact
  • About
  • Disclaimer
  • Privacy Policy
  • Contact
Powered by WordPress | Theme: Astrid by aThemes.