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; }
        }