Çalışma Zamanında GridDesktop Sürümünü Bulun
Contents
[
Hide
]
Olası Kullanım Senaryoları
Bazen, çalışma zamanında GridDesktop sürümünü bulmak önemlidir. Örneğin, doğru sürümü kullandığınızdan veya uygulamanızın hatalarını ayıkladığınızdan emin olmak ve şu anda kullanımda olan GridDesktop sürümünü öğrenmek istiyorsunuz. GridDesktop, çalışma zamanında GridDesktop sürümünü döndüren Aspose.Cells.GridDesktop.GridDesktop.GetVersion() yöntemini sağlar.
Çalışma Zamanında GridDesktop Sürümünü Bulun
Aşağıdaki örnek kod, çalışma zamanında GridDesktop sürümünü bulur. Ekran görüntüsü, referans için bu örnek kodun yürütülmesinin sonucunu gösterir.
Basit kod
This file contains hidden or 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 | |
//Get the version number of GridDesktop | |
string version = Aspose.Cells.GridDesktop.GridDesktop.GetVersion(); | |
//Show the version number in message box | |
MessageBox.Show("GridDesktop Version: " + version, "GridDesktop Version"); |