检查版本号
Contents
[
Hide
]
想知道您正在使用的Aspose.Cells版本?我们定期发布Aspose.Cells的新版本,既引入新功能,也修复问题。版本号由主版本号、次版本号和热修复版本号组成。每个数字必须是从0开始的整数。格式如下:
主版本号.次版本号.热修复版本号
当我们发布Aspose.Cells的新版本时,我们会更新版本号。
本文介绍如何手动检查系统上安装的Aspose.Cells版本,以及如何使用Aspose.Cells API。
手动检查版本号
要手动查找您正在使用的Aspose.Cells版本:
1.右键单击Aspose.Cells.dll文件,然后选择属性。
- 单击版本(或详情)选项卡来查看版本号。
使用Aspose.Cells API检查版本号
要通过API查找您正在使用的Aspose.Cells版本,请使用CellsHelper类的GetVersion静态方法获取Aspose.Cells的版本号。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
Console.WriteLine("Assembly Version Info: " + CellsHelper.GetVersion()); |