Printr 1.0.4
dotnet add package Printr --version 1.0.4
NuGet\Install-Package Printr -Version 1.0.4
<PackageReference Include="Printr" Version="1.0.4" />
<PackageVersion Include="Printr" Version="1.0.4" />
<PackageReference Include="Printr" />
paket add Printr --version 1.0.4
#r "nuget: Printr, 1.0.4"
#:package Printr@1.0.4
#addin nuget:?package=Printr&version=1.0.4
#tool nuget:?package=Printr&version=1.0.4
A package to simplify Print() statement in C# .NET. Inspired by print() function of Python.
Refer the github project - https://github.com/souravkayal/printr
It's easy to use.
Step 1 : Add namespace in your .cs file
using static Printmaster.Printr;
Step 3 : Start printing anything.
Print(1,2,3);
Print(1,true, false);
Print(new List<string> { "Item1" , "Item2" });
var person = new { Name = "John", Age = 30 }; Print(person);
int[,] matrix = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 9 } };
Print(matrix);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.