UtilAssemblyRegistrationIsAssemblyInGAC(FileInfo) Method
Determines whether the specified assembly is installed in GAC (Global Assembly Cache).
Namespace: DevCase.Core.Diagnostics.AssemblyAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool IsAssemblyInGAC(
FileInfo assemblyFile
)
Public Shared Function IsAssemblyInGAC (
assemblyFile As FileInfo
) As Boolean
Dim assemblyFile As FileInfo
Dim returnValue As Boolean
returnValue = UtilAssemblyRegistration.IsAssemblyInGAC(assemblyFile)
public:
static bool IsAssemblyInGAC(
FileInfo^ assemblyFile
)
static member IsAssemblyInGAC :
assemblyFile : FileInfo -> bool
No code example is currently available or this language may not be supported.
- assemblyFile FileInfo
-
The assembly file.
Boolean if the assembly is installed in GAC; otherwise,
.
This is a code example.
No code example is currently available or this language may not be supported.
Dim isAssemblyInstalled As Boolean = IsAssemblyInGAC(New FileInfo("C:\Assembly.dll"))
Console.WriteLine(isAssemblyInstalled)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.