using System;
using GroupDocs.Conversion.Options.Convert;

namespace ConvertWordToPdfUsingCSharp
{
    class Program
    {
        public static void Main(string[] args) // Main function to convert TIFF to PDF using C#
        {
            // Remove the watermark in output PDF by adding license
            string licensePath = "/path/to/GroupDocs.Conversion.lic";
            GroupDocs.Conversion.License lic = new GroupDocs.Conversion.License();
            lic.SetLicense(licensePath);
            
            // Load the source TIFF file for conversion to PDF
            var converter = new GroupDocs.Conversion.Converter("/path/to/sample.tiff");
                
            // Set the convert options for the output PDF
            var convertOptions = new PdfConvertOptions();

            // Convert and save the TIFF in PDF format
            converter.Convert("/path/to/converted.pdf", convertOptions);

            Console.WriteLine("Done");
        }
    }
}