abhishek kumaraksilearntocoder.hashnode.devยทAug 10, 2024Learn C# with OOPS Concept(Memory Management)Lets understand memory management with simple C# Program as given below:- class Employee { int Employee_Id; //member variables/instance variable of a class string Employee_Name; public static void Main() { Employee objEmployee=new Employee(); } } Que...global memoryAdd a thoughtful commentNo comments yetBe the first to start the conversation.