// For complete examples and data files, please go to https://github.com/groupdocsconversion/GroupDocs_Conversion_NET
// Instantiating the conversion handler using Cache from custom common class
ConversionHandler conversionHandler = Common.getConversionHandlerUsingCache(true);
// Convert and save converted Presentation documents.
// Returns paths to the converted Presentation documents.
var convertedDocumentPath = conversionHandler.Convert(Common.inputGUIDFile, new SlidesSaveOptions { });
convertedDocumentPath.Save("result-" + Common.inputGUIDFile);