UtilReflectionGetReferencedAssemblies Method
Gets the referenced assemblies of the specified assembly.
Namespace: DevCase.Core.Diagnostics.Assembly.ReflectionAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static ReadOnlyCollection<AssemblyName> GetReferencedAssemblies(
string filepath
)
Public Shared Function GetReferencedAssemblies (
filepath As String
) As ReadOnlyCollection(Of AssemblyName)
Dim filepath As String
Dim returnValue As ReadOnlyCollection(Of AssemblyName)
returnValue = UtilReflection.GetReferencedAssemblies(filepath)
public:
static ReadOnlyCollection<AssemblyName^>^ GetReferencedAssemblies(
String^ filepath
)
static member GetReferencedAssemblies :
filepath : string -> ReadOnlyCollection<AssemblyName>
No code example is currently available or this language may not be supported.
- filepath String
-
The assembly filepath.
ReadOnlyCollectionAssemblyName
The referenced assemblies of the specified assembly.
This is a code example.
No code example is currently available or this language may not be supported.
For Each assn As AssemblyName In GetReferencedAssemblies("C:\Assembly.exe")
Console.WriteLine(assn.Name)
Next assn
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.