This is the screen demo of my previous blog post.
-
-
We don’t deal with .NET framework, or .NET Core anymore. We call it ‘.NET’. As of writing this blog, the latest version available is .NET 5. And, these steps works in previous versions of .NET Core also. Assuming you have downloaded the latest version of .NET. Step 1:Open command prompt Step 2: Type: dotnet new console -name “HelloWorld“ You must see a new folder named “HelloWorld” crated with a directory structure like this: You can open Program.cs to see its contents. It has a very basic program to display “Hello World!” message. Step 3: Your .NET console application is ready.…
-
Just two steps: Ask user the permission to send notifications Notification.requestPermission(); 2. Create/send notifiation notificaiton = new Notification (‘This is a notification’);