AmandaInterface.AmandaHook.Load C# (CSharp) Method

Load() private method

private Load ( [ file ) : bool
file [
return bool
        public static extern bool Load([MarshalAs(UnmanagedType.LPStr)] string file);

Usage Example

Ejemplo n.º 1
0
        //Run a block of code (eg: definitions)
        public bool Load(string code)
        {
            File.WriteAllText(".temp.ama", code);
            bool success = AmandaHook.Load(".temp.ama");

            File.Delete(".temp.ama");

            return(success);
        }
All Usage Examples Of AmandaInterface.AmandaHook::Load