Find my latest knowledge clip.
-
-
Note the point… .NET 5.0 is the next major release of .NET Core following 3.1. We named this new release .NET 5.0 instead of .NET Core 4.0 for two reasons: We skipped version numbers 4.x to avoid confusion with .NET Framework 4.x. We dropped “Core” from the name to emphasize that this is the main implementation of .NET going forward. .NET 5.0 supports more types of apps and more platforms than .NET Core or .NET Framework. ASP.NET Core 5.0 is based on .NET 5.0 but retains the name “Core” to avoid confusing it with ASP.NET MVC 5. Likewise, Entity Framework…
-
This code snippets will let you auto-generate strong passwords. Look for the password rules in the inline comments in code
-
This blog demonstrates how you can JOIN (yes, like in SQL) two xml (datasets) to one using a common ID (relationship). shop.xml price.xml main.xsl Resulting XML, after transformation should look like: Bonus code, if some .net developers want a transformation code:
-
Sending a mail using Office365 is no big deal. It is just similar to how you send a mail via any SMTP server. But you will have to mind the SMTP host, port number and remember to enable SSL in the code. Here goes the code snippet: