AmandaInterface.AmandaHook.Load C# (CSharp) Méthode

Load() private méthode

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

Usage Example

Exemple #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