Example #1
0
        public void Start(string inFileName, GuiTop inGuiTop)
        {
            Stop();
            Encoding enc = Encoding.GetEncoding("Shift_JIS");

            _Writer    = new StreamWriter(inFileName, false, enc);
            _RefGuiTop = inGuiTop;
        }
Example #2
0
 public void Stop()
 {
     if (_Writer != null)
     {
         _Writer.Close();
         _Writer    = null;
         _RefGuiTop = null;
     }
 }