Aspose.Imaging.Examples.Utils.Main C# (CSharp) Метод

Main() статический приватный Метод

static private Main ( ) : void
Результат void
        static void Main()
        {

            Console.WriteLine("Open RunExamples.cs. \nIn Main() method uncomment the example that you want to run.");
            Console.WriteLine("=====================================================");

            // Uncomment the one you want to try out
         
            //// =====================================================
            //// =====================================================
            //// Export
            //// =====================================================
            //// =====================================================

            //ExportDxfToPdf.Run();
            //ExportImageToDifferentFormats.Run();
            //ExportImageToPSD.Run();
            //ExportPsdLayersToImages.Run();

            //// =====================================================
            //// =====================================================
            //// Files
            //// =====================================================
            //// =====================================================

            //CreatingAnImageBySettingPath.Run();
            //CreatingImageUsingStream.Run();

            //// =====================================================
            //// =====================================================
            //// Images
            //// =====================================================
            //// =====================================================

            //AddFramesToTIFFImage.Run();
            //ConcatTIFFImages.Run();
            //DrawImagesUsingCoreFunctionality.Run();
            //DrawingUsingGraphicsPath.Run();

            //// =====================================================
            //// =====================================================
            //// Shapes
            //// =====================================================
            //// =====================================================

            //DrawingArc.Run();
            //DrawingBezier.Run();
            //DrawingEllipse.Run();
            //DrawingLines.Run();

            Console.WriteLine("Press any key to continue...");
            Console.ReadKey();
        }
    }