12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
/* Copyright (C) 2006 Mark Garner This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ using System; using System.Collections.Generic; using System.Text; using System.IO; namespace NDataUnit { class LogWriter { private string _outputLogFilePath; private StreamWriter _outputStream; public LogWriter() { } public LogWriter(string OutputLogFilePath) { _outputLogFilePath = OutputLogFilePath; if (File.Exists(_outputLogFilePath)) File.Delete(_outputLogFilePath); _outputStream = File.CreateText(_outputLogFilePath); } public string OutputLogFilePath { get { return _outputLogFilePath; } set { _outputLogFilePath = value; } } public void WriteToLog(string Line) { if (_outputStream == null) _outputStream = File.CreateText(_outputLogFilePath); _outputStream.WriteLine(Line); _outputStream.Flush(); } } }
About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us
©2010 Koders is a trademark of Black Duck Software, Inc. Black Duck, Know Your Code and the Black Duck logo are registered trademarks of Black Duck Software, Inc. in the United States and other jurisdictions. All other trademarks are the property of their respective holders.