Ancestry.QueryProcessor.Compile.Emitter.Complete C# (CSharp) Method

Complete() public method

public Complete ( System program ) : Runtime.ExecuteHandler
program System
return Runtime.ExecuteHandler
        public Runtime.ExecuteHandler Complete(System.Type program)
        {
            if (_options.DebugOn)
                SaveAssembly();
            return (Runtime.ExecuteHandler)program.GetMethod("Main").CreateDelegate(typeof(Runtime.ExecuteHandler));
        }