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


can we call the garbage collector to run explicicitly?

Answers were Sorted based on User's Feedback



can we call the garbage collector to run explicicitly?..

Answer / velu s

Yes we can call the Garbage collector explicitly by using
method Collect().

Ex. Create object for the Garbage collector.

GarbageCollector Gc = new GarbageCollector();
Gc.Collect();

Is This Answer Correct ?    16 Yes 1 No

can we call the garbage collector to run explicicitly?..

Answer / rakesh

not required to create object
we can call directly
System.GC.Collect();

Is This Answer Correct ?    6 Yes 0 No

can we call the garbage collector to run explicicitly?..

Answer / sri4u_926

s we can cal Gc explisitly but it Reduces the performance.

Is This Answer Correct ?    3 Yes 0 No

can we call the garbage collector to run explicicitly?..

Answer / prateek

But forcefully calling Garbage collector reduces the
performance. As when CLR runs Garbage collector
automatically it checks all the objects which are not used
for a long time and remove them. But if we use
System.GC.Collect(), it will shift the particular object to
cache. When CLR founds no object which is made to be free
then it will check the cache memory from there it will
remove that very object. So, how it is reducing the performance.

Is This Answer Correct ?    3 Yes 0 No

can we call the garbage collector to run explicicitly?..

Answer / lalitprakash baraik

Yes it is possible.The Gargabe collector class is named as GC and is found in the 'System' namespace.GC is a static class and the Collect method itself is static.There fore you can directly call the Collect() method without creation of an object to access the method.

GC.Collect()

Is This Answer Correct ?    2 Yes 0 No

can we call the garbage collector to run explicicitly?..

Answer / xyz

we can call the garbage collection explicitly but performing a garbage collection is totally dependent on the JVM. So calling System.gc() does not necessarily performing the garbage collection.

--
XYZ

Is This Answer Correct ?    2 Yes 3 No

Post New Answer

More Dot Net Framework Interview Questions

How do you convert a string into an integer in .NET

1 Answers  


what is entity framework?

0 Answers   Microsoft,


Does razor engine supports for tdd?

0 Answers  


How would you deploy your old applications with .net framework 4.0? Are the old applications compatible?

0 Answers  


What are the derived classes from xmlReader and xmlWriter

1 Answers  


How do I change the permission set for a code group

1 Answers   4Cplus,


What is MSIL, IL, CTS?

13 Answers  


What is net framework 3.0 ?

0 Answers  


Why should we go for entity framework?

0 Answers  


What is entity framework in asp net?

0 Answers  


Explain entity lifecycle? : Entity framework

0 Answers  


What is .net core framework?

0 Answers  


Categories