What is the difference between Dispose() and Finalize() methods?
a. Dispose() method will remove the resources to a class and Finalize() will release the memory for a class.
b. Dispose() method is used for a class and Finalize() method is for a class method.
c. Dispose() will be called by programmer explicitly and Finalize() method is called by Garbage Collector implicitly.
d. All.