UtilityPack.Print
1.1.8
dotnet add package UtilityPack.Print --version 1.1.8
NuGet\Install-Package UtilityPack.Print -Version 1.1.8
<PackageReference Include="UtilityPack.Print" Version="1.1.8" />
paket add UtilityPack.Print --version 1.1.8
#r "nuget: UtilityPack.Print, 1.1.8"
// Install UtilityPack.Print as a Cake Addin #addin nuget:?package=UtilityPack.Print&version=1.1.8 // Install UtilityPack.Print as a Cake Tool #tool nuget:?package=UtilityPack.Print&version=1.1.8
Print provides a single static class, with several static methods that abstract the functions Console.WriteLine() and Console.Write(), this allow to automatically write messages of different colors and disable all commands Print present in the program using a single flag.
Class Print
Property
IsActive : static public bool
Only if set to 'true' all Print methods calls will actually write to console.IsVerbose : static public bool
Only if set to 'true' all the Verbose methods will actually write to the console.IsDebug : static public bool
Only if set to 'true' the "Print.Debug()" calls will actually write to the console.IsGUI : static public bool
If it is necessary to develop an application with a graphical interface, it is possible to send all the Print methods to some graphical component instead of the console. To do this, it is necessary to set this property to 'true' and then to define the 'GuiWriteFunction' property of Print.GuiWriteFunction : static public Action<Color, string, bool>
Define some method to which Print calls are re-routed, the set method must take 3 values as input:
-- Color, the color of the message that is coming
-- string, the text of the message that is coming
-- bool, if the message has the last character as a new line '\ n'
Methods
Error(Object text, bool line)
Write a red error messageWarning(Object text, bool line)
Write a yellow warning messageSucces(Object text, bool line)
Write a green succes messageNote(Object text, bool line)
Write a gray note messageMessage(Object text, bool line)
Write a white messageDebug(Object text, bool line)
Write a cyan debug messageSeparator(int linsegmentse)
Writes a separator line consisting of a defined number of dashes "-----"
.
ErrorVerb(Object text, bool line)
Write a red error message, only when "IsVerbose" is trueWarningVerb(Object text, bool line)
Write a yellow warning message, only when "IsVerbose" is trueSuccesVerb(Object text, bool line)
Write a green succes message, only when "IsVerbose" is trueNoteVerb(Object text, bool line)
Write a gray note message, only when "IsVerbose" is trueMessageVerb(Object text, bool line)
Write a white message, only when "IsVerbose" is trueDebugVerb(Object text, bool line)
Write a cyan debug message, only when "IsVerbose" is trueSeparatorVerb(int linsegmentse)
Writes a separator line consisting of a defined number of dashes "-----", only when "IsVerbose" is true
Example
Print.IsVerbose = true;
Print.IsDebug = true;
try
{
...
Print.Succes("Execution terminated");
Print.Debug("Ending time: "+DateTime.Now());
}
catch(Exception ex)
{
Print.Error("Something has gone wrong");
Print.ErrorVerb(ex.ToString());
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.