コード例 #1
0
ファイル: Settings.cs プロジェクト: zhongshuiyuan/JSDocNet
        /// <summary>
        /// Saves this instance to a json file
        /// </summary>
        public void Save(string FilePath)
        {
            string JsonText = Sys.ToJson(this);

            Sys.SaveTextToFile(FilePath, JsonText);
        }