![]() | ModuleInitializerGetLibraryVersion Method |
Namespace: VIZPub.NET
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Examples { public class VIZPubExample { private void PrintEnvironment() { string assemblyPath = VIZPub.NET.ModuleInitializer.GetAssemblyLocation(); string entryAssemblyPath = VIZPub.NET.ModuleInitializer.GetEntryAssemblyLocation(); string assemblyVersion = VIZPub.NET.ModuleInitializer.GetLibraryVersion(); string interopVersion = VIZPub.NET.ModuleInitializer.GetInteropLibraryVersion(); bool compareVersion = VIZPub.NET.ModuleInitializer.CompareVersion(); bool existLibrary = VIZPub.NET.ModuleInitializer.ExistLibrary(); } } }