© 2023 Hashnode
#c-cikbdqjwh0042l553122kmxlz
Introduction to Worker Service Worker Service is a feature of .NET that allows developers to create long-running background processes that can run independently of the main application. With the recen…
You might be seen this statement previously where we assign a single value to multiple variables, int num1, num2, num3; num1 = num2 = num3 = 5; But within C# we can assign multiples values to multiple variables using the statement var (a,…
Project link: https://github.com/ThiagoKS-7/Linkedin-Learning-CSharp1 In this LinkedIn Learning course, the main objective was not necessarily to create a system or platform, but to train the fundamen…
App and software development has become one of the most popular working fields. According to the U.S. Bureau of Labor statistics, the number of employed developers will gradually increase and reach 22…
What is Entity Framework Core? Entity Framework Core (EF Core) is the latest version of the Entity Framework from Microsoft. It has been designed to be lightweight, extensible and support cross platfo…
Getting Started Run the commanddotnet new console -o PhoneBookConsoleAppon your CLI (Command Line Interface) to create a phone book console application in C#. Note: Before running the command, make sure .NET SDK (Software development kit) o…
In today's blogs, I will be talking about LD_library_path. LD_LIBRARY_PATH is an environment variable that lists a directory where the executable can search for a Linux shared library. It's also called the shared library search path. The va…
Delegates A delegate is an object that refers to a method or a reference type that defines a method signature. It is declared using the delegate keyword. class program { public delegate void MyAg…
What is this 👇? var favoriteNumber int = 7 a variable of the name "favoriteNumber" of a type integer that stores 7. similarly var favoriteColor string = "black" a variable of the name "favoriteColo…
Mother's Day is quick drawing nearer, and even in these insane occasions it merits requiring the day to value our moms, grandmas, aunties, nannas, and mother-figures. They do a ton for us, and their adoration goes far. In a period of Stay H…