InLevel Up CodingbyAthanasios Emmanouilidis·Oct 19, 20235 Software Engineering truths to live byIn this article we will explore some Software Engineering truths I have learned over more than 10 years coding all sorts of applications on…
InLevel Up CodingbyAthanasios Emmanouilidis·Sep 27, 2023Call Unmanaged Functions from a .DLL file within C#Photo by Luisa Brimble on UnsplashA response icon3A response icon3
InLevel Up CodingbyAthanasios Emmanouilidis·Sep 24, 2023Brand new feature coming to .NET 8 — CreateEmptyBuilder()In this tutorial we are going to see the new CreateEmptyBuilder method that comes with .NET8 and allows us to create the smallest apps…
InLevel Up CodingbyAthanasios Emmanouilidis·Sep 19, 2023Brand new feature coming to .NET 8 — Keyed Services in Dependency InjectionA new feature coming to .NET 8 is Keyed Services in Dependency Injection. This new feature allows you to have a collection of concrete…A response icon2A response icon2
InLevel Up CodingbyAthanasios Emmanouilidis·Sep 18, 2023Run Python code inside .NET with IronPythonDid you know that you can run Python code inside .NET? Yes, you can with IronPython! IronPython is an open-source implementation of the…
InLevel Up CodingbyAthanasios Emmanouilidis·Sep 18, 2023How I created PGPkeygenerator.com: my journey.When I’m not in my daily 9–5 job, I am always thinking about what side-project I can create. This time the idea came from a need I had at…
InLevel Up CodingbyAthanasios Emmanouilidis·Sep 18, 2023Attention, Web Developers! You must learn about Subresource Integrity (SRI)As a Web developer you almost always utilize external resources in the websites you create: you link to jQuery, Bootstrap, React or…
InLevel Up CodingbyAthanasios Emmanouilidis·Aug 29, 2023“HelloWorld” program in IL (Intermediate Language Code) in C#Reflection is a powerful feature in C# that allows you to explore assemblies and their types dynamically. One fascinating aspect of…
InLevel Up CodingbyAthanasios Emmanouilidis·Jul 23, 2023How to implement IComparable<T> in your classes in C# .NET7.IComparable<T> is a C# interface you can implement in your custom defined classes that lets you create a CompareTo(T) method that will let…
InLevel Up CodingbyAthanasios Emmanouilidis·Jul 14, 2023How to cast an int to an enum in C#A very popular question on StackOverflow is “How do I cast int to enum in C#?”. Let’s see how this can be done easily, step by step.