ARCed.Scripting.Script.Save C# (CSharp) Метод

Save() публичный Метод

Saves the script to disk using generated filename
public Save ( ) : bool
Результат bool
        public bool Save()
        {
            try
            {
                File.WriteAllText(this.GetFullPath(), this._text, Encoding.UTF8);
                this.NeedSaved = false;
                return true;
            }
            catch (IOException) { return false; }
        }