abhishek kumaraksilearntocoder.hashnode.dev·Aug 4, 2024Lets Learn C# With OOPS from basicsFirst we will start with some simple basic code and then we will elaborate each line of code one by one. Basic C# code:- Write a Code in Notepad :- using System; class Employee { public int id; public static void Main() { Employee obj=new Employee(...80 readsdotnet
Raineraineyang.hashnode.dev·Dec 12, 2023Learning Note: From Source File to Executable FileThis article is a summary of Chapter 8 of: Yazawa, H. (2015). 程序是怎么跑起来的[How Program Works] (L. Fengjun, Trans.). People's Posts and Telecommunications Press Source Code and Native Code The code written in programming languages are called source code,...native code
Giorgio Todeschinigtdev.hashnode.dev·Dec 10, 2023Creating a .NET Wrapper for a Native DLLIntroduction Operating in a .NET environment, there are situations where leveraging the capabilities of external DLLs can be advantageous. Unfortunately, several online libraries, such as those involving mathematical or geometric operations, are ofte...149 reads.NET
Luxury Binariesbinaries.hashnode.dev·Nov 23, 2023How to share data between different instance of same DLLUsually Dlls are loaded into its corresponding process address space. Indeed the code is shared between all instances but not the global data. So the issue that we might face is – how can we share common data between all dll instances? #pragma data_s...pragma
Noor Ahmednoor-ahmed.hashnode.dev·Nov 5, 2023Embed DLLs in Single Executable File of Windows Forms AppIntroduction In this article, I will be talking about how you can deploy your Full-Stack Windows Forms Application into a single exe file. Problem Statement If you are working on a full-stack Windows Forms Application project and you want to have use...82 reads.NET