Exemplo n.º 1
0
Arquivo: Out.cs Projeto: 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;
 }
Exemplo n.º 2
0
Arquivo: Out.cs Projeto: 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;
 }
Exemplo n.º 3
0
Arquivo: Out.cs Projeto: 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
Exemplo n.º 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;
 }
 public static void Log(string message)
 {
     LoggerMethod.Invoke(message);
 }