Click or drag to resize

ModuleInitializerGetAssemblyLocation Method

현재 VIZPub.NET 어셈블리 경로

Namespace:  VIZPub.NET
Assembly:  VIZPub.NET (in VIZPub.NET.dll) Version: 1.3.21.508 (1.3.21.508)
Syntax
C#
public static string GetAssemblyLocation()

Return Value

Type: String
VIZPub.NET 어셈블리 경로
Examples
C#
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();

        }
    }
}
See Also