SS.Ynote.Classic.Core.Project.YnoteProject.Save C# (CSharp) Method

Save() public method

Saves the Project
public Save ( string file ) : void
file string
return void
        public void Save(string file)
        {
            string json = JsonConvert.SerializeObject(this, Formatting.Indented);
            File.WriteAllText(file, json);
        }
YnoteProject