Using Javascript in Blazor pages

Featured

Note: Here is my GitHub Repository and my Azure hosted site displaying the code below. A big selling point behind Blazor is the ability write code in C# over Javascript. While it’s a great feature to seamlessly develop web applications in C#, the Blazor team had the foresight to still include Javascript support. This is … Continue reading Using Javascript in Blazor pages

Basic Unit Testing in C# with Visual Studio

Unit testing is the process of creating low-level function checks for your code. The key idea is to test the lowest possible level of methods to make it simpler to troubleshoot and find the root of bugs. This usually equates to testing each of your methods, no matter how trivial they may seem. Unit testing … Continue reading Basic Unit Testing in C# with Visual Studio