In this post on A Beginner’s Tutorial on WPF in C#, I will show how to create a simple Windows Presentation Foundation (WPF) application. As you already know, using C# we can create several types of applications. Therefore, we can develop a console application in C# as well as a GUI application. In this article, …
Data Visualization with Pandas
In this post on Data Visualization with Pandas, I will discuss how we can visualize our data by plotting various kinds of charts using the Pandas library of Python. Basically, there are several functions for plotting the charts available in the pandas library. Further, these functions are highly customizable and simple to use. Therefore, you …
A Brief Introduction of Pandas Library in Python
In this post on A Brief Introduction of Pandas Library in Python, I will introduce the pandas package in python. Undoubtedly, it is one of the most popular libraries in Python and stands for Panel Data. Indeed, it is another useful package for data analysis and we use it frequently when we work with datasets. Unlike the NumPy package that mainly …
A Brief Tutorial on NumPy in Python
In this post on A Brief Tutorial on NumPy in Python, I will explain different features of the NumPy package in Python. Basically, this library serves the purpose of manipulating arrays. In fact, Python already has a list data structure for creating arrays. However, NumPy is much faster than lists. Also, displaying an array is …
Explaining C# Records with Examples
In this post on Explaining C# Records with Examples, I will explain a new feature of C# 9.0 called Records. Basically, Record is a new feature of C#, so you need to install the latest version of Visual Studio in order to use it. After installing Visual Studio, create a console application in C# and open …
Everything about Tuples in C# and When to Use?
In this post on Everything about Tuples in C# and When to Use? I will explain the tuples in C# in detail with the help of several examples. The most important point about tuples is that they allow you to group multiple unrelated data values in the same data structure and therefore the tuples provide …
Understanding the Architecture of .NET Framework
In this post on Understanding the Architecture of the .NET Framework, I will explain the layered architecture of the .NET Framework. Basically, .NET is a powerful framework that lets you build software applications on Windows. In fact, it has a vast library that makes software development easier and productive on the Windows Platform. To emphasize this point, …
Creating Single Page Applications with Angular
This article is an introduction to Creating Single Page Applications with Angular. Basically, it is useful for beginners who want to start creating applications in Angular. Here I will discuss the basics of Angular and its versions. Then I will create a simple application that runs on the browser. You will find more details on creating applications …
Working with Arrays in TypeScript
In this post on Working with Arrays in TypeScript, I will explain how to use arrays in TypeScript with several examples. Like many other programming languages, TypeScript also supports arrays. Basically, arrays refer to a user-defined data type that contains multiple values. Usually, the values that an array contains, all belong to the same data …
Creating Jagged Arrays in C#
Jagged arrays in C# are two-dimensional arrays with the number of columns not necessarily the same for each row. As opposed to the two-dimensional rectangular arrays, we can define the different sizes of each row in a jagged array. In this post on Creating Jagged Arrays in C#, I will explain jagged arrays and their …