Sharad Gupta

Sharad Gupta

  • 98
  • 19.7k
  • 8.6m

Memory management in Dot net

Sep 22 2012 2:57 AM
public static void Main()
{
string a ="abc";
string b=a;
a="xyz";
}
In this example, what is structure of memory, taken by these variable.

Answers (11)