public XTJsonRoot SaveAs(string path, Encoding enc, uint warps = 1, List <XTJsonComment> doc = null, bool isCache = true) { XTJson.Write(path, this, enc, warps, doc, isCache); if (isCache) { return(XTJson.Open(path, doc == null, false)); } return(null); }
public new void SaveAs(string path, Encoding enc, uint warps = 1, List <XTJsonComment> doc = null, bool isCache = true) { XTJson.Write(path, this, enc, warps, doc, isCache); }
// ---------------------------------------------------------- // public // ---------------------------------------------------------- public void Save(uint warps = 1) { XTJson.Write(this.m_path, this, this.m_encoding, warps, this.m_doc); }