15 lines
269 B
C#
15 lines
269 B
C#
|
using System;
|
||
|
using Mono.Cecil;
|
||
|
|
||
|
public class Utils
|
||
|
{
|
||
|
public static bool IsManagedAssembly (string fileName)
|
||
|
{
|
||
|
try {
|
||
|
ModuleDefinition module = ModuleDefinition.ReadModule (fileName);
|
||
|
return true;
|
||
|
} catch (BadImageFormatException) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|