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...

Valuetype/reference type?

Answer Posted / nitin

Value type directly contain their data in stack and
reference type store a reference to variable's memory
address

value type uses stack and reference type uses heap to store
data

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is datetime a value type in c#?

921


What is the default value of object in c#?

965


Explain 'structure padding'?

1171


Explain the access modifiers in c#?

988


What does out mean in c#?

985


Why do you need boxing in c#?

961


Why do we use reflection in c#?

1000


Why would you use a class property in c#?

969


How to override a function in c#?

1049


What is a static property. Give an example?

991


What is dto c#?

940


What is platform independence"?

989


What is multithreading with .net?

1047


What is application c#?

930


In a C# class we have a SortedList member m_addinProjects we want to provide an iterator to allow the consumer of this class access to the items in the collection. Please provide an iterator method for the AnalyzeAddinsDLL class below and an example of how it would be used. namespace AnalyzeAddinsDLL { public class AllAddInProjects { private SortedList m_addinProjects; public AllAddInProjects() { m_addinProjects = new SortedList(); } } }

2299