What is the difference between the value-type variables and reference-type variables in terms of garbage collection ?
Answer / kirti
The value-type variables are not garbage-collected, they just fall off the stack when they fall out of scope, the reference-type objects
are picked up by GC when their references go null.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is entity framework advantage?
How to make sure Client Validation is enabled in ASP.Net MVC
How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?
Can you set the unlimited length for "maxjsonlength" property in config?
How many .NET languages can a single .NET DLL contain
Will the finally block get executed if an exception has not occurred
What are Validation Annotations?
What’s the advantage of using System.Text.StringBuilder over System.String?
What does assemblyinfo.cs file consists of ?
1 Answers Accenture, BirlaSoft,
How .net assemblies are registred as private and shared assembly ?
What is ado.net data provider? : Entity framework
What is the difference between ViewData, ViewBag and TempData?