SparkleLib.SparkleConfig.Save C# (CSharp) Method

Save() private method

private Save ( ) : void
return void
        private void Save()
        {
            if (!File.Exists (FullPath))
                throw new FileNotFoundException (FullPath + " does not exist");

            Save (FullPath);
            SparkleLogger.LogInfo ("Config", "Wrote to '" + FullPath + "'");
        }