Can I create an object of my class in stack regarding .net and C#? For example:
class abc { int i=1; }
abc a1=new abc();
Now, here the object is created in heap. So, is there any way to create the object in stack memory of ram if the size of object is not big?