Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Is string a value type or a reference type?

Answer Posted / sheetal shivdas

run this code : to see that string is reference type


SByte a = 0;
Byte be = 0;
Int16 c = 0;
Int32 d = 0;
Int64 ee = 0;
String s = "";
Exception ex = new Exception();

object[] Types = { a, be, c, d, ee, s,ex };

foreach (object obj in Types)
{
string type;
if (obj.GetType().IsValueType)
type = "Value Type";
else
type = "Reference Type";
Response.Write(type);
}

Is This Answer Correct ?    32 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are the Custom controls in asp.net?

994


What are the different ways you would consider sending data across pages in ASP (i.e between asp to asp)?

925


What is autopostback true?

999


Explain the difference between Repeater and Data list control in ASP.NET?

1056


Is web config mandatory?

923


What is the difference between CC and BCC?

1008


is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?

2374


What are all the various Estimation Techniques available ?

1056


What are the properties of the eventargs argument when capturing keyboard events?

1021


How do I use response redirect?

932


What is css and what is it used for?

948


What is the difference between ASP.NET Webforms and ASP.NET MVC?

1079


Which is an advantage of application service providers?

850


What is difference cookie and session?

929


where can i gather the materials for MCP certification

5202