I have created a document object as follows
Aspose.Words.Document doc = new Aspose.Words.Document("c:\\test.doc");
I need to dispose this doc object after using. For this I did this,
doc = null;
Is this enough? Or is there any other Aspose specific garbage collection function I should call to clear the object?
Thank you.