syed abid

syed abid

  • NA
  • 3
  • 0

if we implement interface in structure and create object of structure then the object of structure stores in stack or heap

Jul 2 2010 11:44 AM
Interface iface
{
 string name {get;set;}
 void show();
}

struct xyz:iface
{
  //code here
}

I want to know the xyz.name will store in stack of heap.

Answers (2)