zoukankan      html  css  js  c++  java
  • LogEntry

    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));
            }
        }
    }
    

      

  • 相关阅读:
    Android中margin和padding的区别
    自动编号
    5s6r
    手动上传文件到数据表
    FTP from Axapta
    vba 图片
    右键菜单
    x++ 手动while select 表
    传输文件从客户端到服务器
    address
  • 原文地址:https://www.cnblogs.com/rosizel/p/3849573.html
Copyright © 2011-2022 走看看