ChinhDo.Transactions.TxFileManager.AppendAllText C# (CSharp) Метод

AppendAllText() публичный Метод

Appends the specified string the file, creating the file if it doesn't already exist.
public AppendAllText ( string path, string contents ) : void
path string The file to append the string to.
contents string The string to append to the file.
Результат void
        public void AppendAllText(string path, string contents)
        {
            GetEnlistment().AppendAllText(path, contents);
        }