Пример #1
0
 public static DebugUtilities.DML ToDML(this string str, string command, DebugUtilities.DML.Colors color)
 {
     return(new DebugUtilities.DML {
         Text = str, Command = command, Color = color
     });
 }
Пример #2
0
 public static DebugUtilities.DML ToDML(this DbgStringBuilder sb, string command, DebugUtilities.DML.Colors color)
 {
     return(new DebugUtilities.DML {
         Text = sb.ToString(), Command = command, Color = color
     });
 }
Пример #3
0
 public static DebugUtilities.DML ToDML(this object str, DebugUtilities.DML.Colors color)
 {
     return(new DebugUtilities.DML {
         Text = str.ToString(), Color = color
     });
 }