Bike.Hosting.Engine.Run C# (CSharp) 메소드

Run() 공개 정적인 메소드

public static Run ( string homePath, string libPaths, string filePath ) : ScopeFrame
homePath string
libPaths string
filePath string
리턴 ScopeFrame
        public static ScopeFrame Run(string homePath, string libPaths, string filePath)
        {
            var context = InterpretationContext.StartInterpretation(homePath, libPaths, filePath);
            return context.GlobalFrame;
        }
Engine