Answer Posted / chandrapal singh
string is value type by nature. it does not follow rules
of reference type. eg
string MyName1 = "chandrapal Singh";
string MyName2;
MyName2 = MyName1;
MyName2 = "deepak";
Response.Write("MyName1 :" + MyName1 + " MyName2 :" +
MyName2);
This gives Output
MyName1 :chandrapal Singh MyName2 :deepak
if this is reference type then the output should be
MyName1 :deepak MyName2 :deepak
| Is This Answer Correct ? | 7 Yes | 29 No |
Post New Answer View All Answers
Explain automatic memory management in .net.
If we remove web.config or machine.config from the application then, is this application will works?
Why select Web API?
How can we register exception filter globally?
What asp.net control can embed xaml into asp.net pages?
Describe the method to create a permanent cookie?
Which method do you use to kill explicitly a users session?
What are the page life cycle events?
What is aspect-oriented programming?
Which dll handles the request of .aspx page?
Define repository pattern in asp.net mvc? : asp.net mvc
What are the built-in objects in asp.net?
Differentiate between early binding and late binding.
If you have an application with multiple security levels though secure login and my ASP.NET web appplication is spanned across three web-servers by using round-robbin load balancing. Explain which is the best approach to maintain login-in state for the users?
What are the session management techniques asp net?