UtilityPack.Print 1.1.8

dotnet add package UtilityPack.Print --version 1.1.8
NuGet\Install-Package UtilityPack.Print -Version 1.1.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="UtilityPack.Print" Version="1.1.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UtilityPack.Print --version 1.1.8
#r "nuget: UtilityPack.Print, 1.1.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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

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 message

  • Warning(Object text, bool line)
    Write a yellow warning message

  • Succes(Object text, bool line)
    Write a green succes message

  • Note(Object text, bool line)
    Write a gray note message

  • Message(Object text, bool line)
    Write a white message

  • Debug(Object text, bool line)
    Write a cyan debug message

  • Separator(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 true

  • WarningVerb(Object text, bool line)
    Write a yellow warning message, only when "IsVerbose" is true

  • SuccesVerb(Object text, bool line)
    Write a green succes message, only when "IsVerbose" is true

  • NoteVerb(Object text, bool line)
    Write a gray note message, only when "IsVerbose" is true

  • MessageVerb(Object text, bool line)
    Write a white message, only when "IsVerbose" is true

  • DebugVerb(Object text, bool line)
    Write a cyan debug message, only when "IsVerbose" is true

  • SeparatorVerb(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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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.

Version Downloads Last updated
1.1.8 431 5/19/2022
1.1.7 361 5/19/2022
1.1.6 360 5/19/2022
1.1.5 356 5/17/2022
1.1.4 370 5/16/2022
1.1.3 392 3/29/2022
1.1.2 410 2/10/2022
1.1.1 399 2/4/2022
1.1.0 385 2/4/2022
1.0.3 221 12/28/2021
1.0.2 257 11/17/2021