Drivers.Compiler.LibraryLoader.LoadILLibraryFromFile(string)

Here are the examples of the csharp api class Drivers.Compiler.LibraryLoader.LoadILLibraryFromFile(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: FlingOS
Source File: LibraryLoader.cs
public static ILLibrary LoadILLibrary(string FilePath)
        {
            ILLibrary TheLibrary = LoadILLibraryFromFile(FilePath);

            if (TheLibrary != null)
            {
                LoadDependencies(TheLibrary);

                TypeScanner.ScanTypes(TheLibrary);
            }

            return TheLibrary;
        }