CellsHelper.GetVersion

CellsHelper.GetVersion method

Get the release version.

public static string GetVersion()

Return Value

The release version.

Examples

using System;
using Aspose.Cells;

namespace AsposeCellsExamples
{
    public class CellsHelperMethodGetVersionDemo
    {
        public static void Run()
        {
            // Get and display the version of Aspose.Cells
            string version = CellsHelper.GetVersion();
            Console.WriteLine("Aspose.Cells Version: " + version);
        }
    }
}

See Also