public static DebugUtilities.DML ToDML(this string str, string command, DebugUtilities.DML.Colors color) { return(new DebugUtilities.DML { Text = str, Command = command, Color = color }); }
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 }); }
public static DebugUtilities.DML ToDML(this object str, DebugUtilities.DML.Colors color) { return(new DebugUtilities.DML { Text = str.ToString(), Color = color }); }