VirtualMJ

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

namespace ConsoleApplication1
{
    class Program
    {
        string test = "aaa";

        ~Program()
        {
            StreamWriter lastGasp;
            lastGasp = File.CreateText("yourlog.txt");
            lastGasp.WriteLine("It's a Log" + test);
            lastGasp.Flush();
            lastGasp.Close();
        }

        public Program()
        {

        }
        static void Main(string[] args)
        {
            Program t = new Program();
        }
    }
}

posted on 2007-01-30 10:45  小马过河MJ  阅读(156)  评论(0编辑  收藏  举报