ARCed.Scripting.Script.Reload C# (CSharp) Method

Reload() public method

Reloads the script from file
public Reload ( ) : void
return void
        public void Reload()
        {
            if (File.Exists(this.Filename))
                this.Load(this.Filename);
        }