// For complete examples and data files, please go to https://github.com/groupdocsconversion/GroupDocs_Conversion_NET
// To get possible conversions from file extension
public static void GetPossibleConversionsAsPath()
{
// Instantiating the conversion handler from custom common class
ConversionHandler conversionHandler = Common.getConversionHandler();
// get possible conversions from file extension.
string[] possibleConversions = conversionHandler.GetPossibleConversions(Common.inputGUIDFile);
Console.WriteLine("Possible Conversions: ");
for (int i = 0; i < possibleConversions.Length; i++)
{
Console.WriteLine(possibleConversions[i]);
}
}