C-Sharp Learning Part 2 Hey everyone! In this article we are gonna see how to build our first app in C# using .NET. If you haven't installed Visual Studio click here. First open Visual Studio 2022: You will be presented with this screen: Click on Create a new Project. You will get this: Search for "WinForms" in the search box and just select it and click next. Name your app in this screen and select the location of your Project and click Next: In this screen, select .NET Core 3.1 (LTS), you can also select .NET 6.0 which is the latest: Now when the project is created, select View at the top and select Designer. You will get this: Please note that it might take some time if the Designer button is not present in the View Menu. If it is taking a lot of time, then please reopen your project. Let us get started with each control in the toolbox. If you don't see the toolbox, then click View and select Toolbox at the bottom. For starters, let's just create a very simpl...