11
Answers

Memory management in Dot net

Sharad Gupta

Sharad Gupta

12y
4.2k
1
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)