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);
        }