コード例 #1
0
ファイル: Out.cs プロジェクト: habb0/Bfly
 public PrintItem(string message, string methodName, string className, string dateTimenow, string milliSecond, LoggerMethod method, ConsoleColor colorOne, ConsoleColor colorTwo)
     : this(message, methodName, className, dateTimenow, milliSecond, method)
 {
     this.colorOne = colorOne;
     this.colorTwo = colorTwo;
 }
コード例 #2
0
ファイル: Out.cs プロジェクト: habb0/Bfly
 public PrintItem(string message, string methodName, string className, string dateTimenow, string milliSecond, LoggerMethod method, ConsoleColor colorOne, ConsoleColor colorTwo, string headerText)
     : this(message, methodName, className, dateTimenow, milliSecond, method, colorOne, colorTwo)
 {
     this.headerText = headerText;
 }
コード例 #3
0
ファイル: Out.cs プロジェクト: habb0/Bfly
 public PrintItem(string message, string methodName, string className, string dateTimenow, string milliSecond, LoggerMethod method)
 {
     this.message = message;
     this.methodName = methodName;
     this.dateTimenow = dateTimenow;
     this.loggerMethod = method;
     this.milliSecond = milliSecond;
     this.className = className;
 }
コード例 #4
0
 public PrintItem(string message, string methodName, string className, string dateTimenow, string milliSecond, LoggerMethod method, ConsoleColor colorOne, ConsoleColor colorTwo, string headerText)
     : this(message, methodName, className, dateTimenow, milliSecond, method, colorOne, colorTwo)
 {
     this.headerText = headerText;
 }
コード例 #5
0
 public PrintItem(string message, string methodName, string className, string dateTimenow, string milliSecond, LoggerMethod method, ConsoleColor colorOne, ConsoleColor colorTwo)
     : this(message, methodName, className, dateTimenow, milliSecond, method)
 {
     this.colorOne = colorOne;
     this.colorTwo = colorTwo;
 }
コード例 #6
0
 public PrintItem(string message, string methodName, string className, string dateTimenow, string milliSecond, LoggerMethod method)
 {
     this.message      = message;
     this.methodName   = methodName;
     this.dateTimenow  = dateTimenow;
     this.loggerMethod = method;
     this.milliSecond  = milliSecond;
     this.className    = className;
 }
コード例 #7
0
 public static void Log(string message)
 {
     LoggerMethod.Invoke(message);
 }