e46a49ecf1
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
27 lines
592 B
C#
27 lines
592 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;
|
|
}
|
|
}
|
|
|
|
public static bool IsReadyToRunAssembly (string fileName)
|
|
{
|
|
try {
|
|
ModuleDefinition module = ModuleDefinition.ReadModule (fileName);
|
|
return (module.Attributes & ModuleAttributes.ILOnly) == 0 &&
|
|
(module.Attributes & (ModuleAttributes) 0x04) != 0;
|
|
} catch (BadImageFormatException) {
|
|
return false;
|
|
}
|
|
}
|
|
}
|