码迷,mamicode.com
首页 > 其他好文 > 详细

LogEntry

时间:2014-07-19 20:37:00      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   cti   re   c   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;


namespace WindowsFormsApplication3.Model
{
    public class LogEntry
    {
        protected List<LogEntry> logEntries;
        public List<LogEntry> LogEntries { get { return logEntries; } }


        protected string checkoutstep;
        public string CheckoutStep {
            get { return checkoutstep; }
            set { checkoutstep = value; }
        }
        protected string message;
        public string Message {
            get { return message; }
            set { message = value; }
        }


        protected DateTime datetime;
        public LogEntry(string cstep, string messg) {
            logEntries = new List<LogEntry>();
            checkoutstep = cstep;
            this.message = messg;
            datetime = DateTime.Now;
        }
        public void LogWriteLine(string cstep, string messg) {
            logEntries.Add(new LogEntry(cstep, messg));
        }
    }
}

  

LogEntry,布布扣,bubuko.com

LogEntry

标签:blog   io   for   cti   re   c   

原文地址:http://www.cnblogs.com/rosizel/p/3849573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!