11
Answers

Memory management in Dot net

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)