14 |
{ |
{ |
15 |
public partial class LogWriter : UserControl |
public partial class LogWriter : UserControl |
16 |
{ |
{ |
17 |
private static string LOG_PATH = string.Format(@"{0}\{1}", Application.StartupPath, LoggingConstants.AppLogFile); |
private static string LOG_PATH { get { return string.Format(@"{0}\{1}", typeof(LogWriter).Assembly.Location.Replace("RomCheater.Logging.dll", ""), LoggingConstants.AppLogFile); } } |
18 |
|
|
19 |
private delegate string OnGetLogText(); |
private delegate string OnGetLogText(); |
20 |
private delegate void OnSetLogText(string value); |
private delegate void OnSetLogText(string value); |