Mono.Cecil.Tests.BaseTestFixture.GetILResourcePath C# (CSharp) Method

GetILResourcePath() public static method

public static GetILResourcePath ( string name, Assembly assembly ) : string
name string
assembly System.Reflection.Assembly
return string
        public static string GetILResourcePath(string name, Assembly assembly)
        {
            return GetResourcePath (Path.Combine ("il", name), assembly);
        }

Usage Example

Beispiel #1
0
 public override string GetModuleLocation(Assembly assembly)
 {
     return(CompilationService.CompileResource(
                BaseTestFixture.GetILResourcePath(file, assembly)));
 }