- JavaScript and C# both trace their syntax roots back to C, so they largely follow similar language paradigms such as using { } to denote the scope of an operation. Since all JavaScript is valid TypeScript, this means that TypeScript has exactly the same style here.
- The method that starts our program is the static Main method. It looks like this:
public static void Main(string[] args){ CreateWebHostBuilder(args).Build().Run();}
- ASP.NET Core uses a rewritten .NET version that removes the constraint that it can only run on the Windows platform. This means that the reach of ASP.NET has greatly increased because it can now run on Linux platforms, as well as on Windows.
- Discog limits the number of requests that can be issued from ...