示例#1
0
        /// <summary>
        /// This method is used to write the information used for the set to a file in the set directory.
        /// </summary>
        private void CreateSetInfoFile()
        {
            StringBuilder builder = new StringBuilder();

            builder.AppendLine("Created on " + DateTime.Now);
            builder.AppendLine(_setInfo.ToString());

            File.AppendAllText(_setInfo.SetPath + @"\SetInfo.txt", builder.ToString());
        }