LongoMatch.LogEntry.LogEntry C# (CSharp) 메소드

LogEntry() 개인적인 메소드

private LogEntry ( LogEntryType type, string message, string details ) : System
type LogEntryType
message string
details string
리턴 System
        internal LogEntry(LogEntryType type, string message, string details)
        {
            this.type = type;
            this.message = message;
            this.details = details;
            this.timestamp = DateTime.Now;
        }
LogEntry