PrepAway - Latest Free Exam Questions & Answers

Which garbage collector method should you use?

You are developing an application by using C#.
The application includes an object that performs a long running process.
You need to ensure that the garbage collector does not release the object’s resources until the
process completes.
Which garbage collector method should you use?

PrepAway - Latest Free Exam Questions & Answers

A.
ReRegisterForFinalize()

B.
SuppressFinalize()

C.
Collect()

D.
WaitForFullGCApproach()

7 Comments on “Which garbage collector method should you use?

  1. Jun Yang says:

    SuppressFinalize: Requests that the common language runtime not call the finalizer for the specified object.

    WaitForFullGCApproach: Returns the status of a registered notification for determining whether a full, blocking garbage collection by the common language runtime is imminent.




    0



    0
  2. Lord Vader says:

    B.
    by calling SuppressFinalize, the object is placed in a list of objects that are marked as ready for finalization. The garbage collector calls the Finalize methods for the objects in this list and removes the entries from the list. This method blocks until all finalizers have run to completion.




    0



    0

Leave a Reply