VarDump.Extensions
0.2.15
See the version list below for details.
dotnet add package VarDump.Extensions --version 0.2.15
NuGet\Install-Package VarDump.Extensions -Version 0.2.15
<PackageReference Include="VarDump.Extensions" Version="0.2.15" />
paket add VarDump.Extensions --version 0.2.15
#r "nuget: VarDump.Extensions, 0.2.15"
// Install VarDump.Extensions as a Cake Addin #addin nuget:?package=VarDump.Extensions&version=0.2.15 // Install VarDump.Extensions as a Cake Tool #tool nuget:?package=VarDump.Extensions&version=0.2.15
Stand with the people of Ukraine: How to Help
VarDump is a utility for serialization of runtime objects to C# or Visual Basic string.
Developed as a free alternative of ObjectDumper.NET, which is not free for commercial use.
C# & VB Dumper:
<p align="right"><a href="https://dotnetfiddle.net/4ARhwR">Run .NET fiddle</a></p>
using System;
using VarDump;
var anonymousObject = new { Name = "Name", Surname = "Surname" };
var cs = new CSharpDumper().Dump(anonymousObject);
Console.WriteLine(cs);
var vb = new VisualBasicDumper().Dump(anonymousObject);
Console.WriteLine(vb);
C# & VB Dumper, how to use DumpOptions:
<p align="right"><a href="https://dotnetfiddle.net/CxsDtN">Run .NET fiddle</a></p>
using System;
using System.ComponentModel;
using VarDump;
using VarDump.Visitor;
var person = new Person { Name = "Nick", Age = 23 };
var dumpOptions = new DumpOptions { SortDirection = ListSortDirection.Ascending };
var csDumper = new CSharpDumper(dumpOptions);
var cs = csDumper.Dump(person);
var vbDumper = new VisualBasicDumper(dumpOptions);
var vb = vbDumper.Dump(person);
// C# string
Console.WriteLine(cs);
// VB string
Console.WriteLine(vb);
class Person
{
public string Name {get; set;}
public int Age {get; set;}
}
Object Extension methods:
<p align="right"><a href="https://dotnetfiddle.net/Lz9duL">Run .NET fiddle</a></p>
using System;
using System.Linq;
using VarDump.Extensions;
using VarDump.Visitor;
var dictionary = new[]
{
new
{
Name = "Name1",
Surname = "Surname1"
}
}.ToDictionary(x => x.Name, x => x);
Console.WriteLine(dictionary.Dump(DumpOptions.Default));
Object Extension methods, how to switch default dumper to VB:
<p align="right"><a href="https://dotnetfiddle.net/sM1lML">Run .NET fiddle</a></p>
using System;
using System.Linq;
using VarDump.Extensions;
using VarDump.Visitor;
VarDumpExtensions.VarDumpFactory = VarDumpFactories.VisualBasic;
var dictionary = new[]
{
new
{
Name = "Name1",
Surname = "Surname1"
}
}.ToDictionary(x => x.Name, x => x);
Console.WriteLine(dictionary.Dump(DumpOptions.Default));
Extensibility:
<p align="right"><a href="https://dotnetfiddle.net/hfrbo6">Run .NET fiddle</a></p>
using System;
using System.Collections.Generic;
using VarDump;
using VarDump.Visitor;
using VarDump.Visitor.Descriptors;
// For more examples see https://github.com/ycherkes/VarDump/blob/main/test/VarDump.UnitTests/ObjectDescriptorMiddlewareSpec.cs
const string name = "World";
FormattableString formattableString = $"Hello, {name}";
var dumpOptions = new DumpOptions
{
Descriptors = { new FormattableStringMiddleware() }
};
var csDumper = new CSharpDumper(dumpOptions);
var cs = csDumper.Dump(formattableString);
var vbDumper = new VisualBasicDumper(dumpOptions);
var vb = vbDumper.Dump(formattableString);
// C# string
Console.WriteLine(cs);
// VB string
Console.WriteLine(vb);
class FormattableStringMiddleware : IObjectDescriptorMiddleware
{
public IEnumerable<IReflectionDescriptor> Describe(object @object, Type objectType, Func<IEnumerable<IReflectionDescriptor>> prev)
{
if (@object is FormattableString fs)
{
return Descriptor.FromObject(new
{
fs.Format,
Arguments = fs.GetArguments()
});
}
return prev();
}
}
For more examples see Unit Tests
Compare VarDump with ObjectDumper.NET - Run .NET fiddle
Powered By
Repository | License |
---|---|
Heavily customized version of System.CodeDom |
Privacy Notice: No personal data is collected at all.
This tool has been working well for my personal needs, but outside that its future depends on your feedback. Feel free to open an issue.
Any donations during this time will be directed to local charities at my own discretion.
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 | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. 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. |
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.0.4.11 | 109 | 6/3/2024 |
1.0.4.10 | 107 | 5/25/2024 |
1.0.3 | 131 | 4/2/2024 |
1.0.2 | 108 | 3/31/2024 |
1.0.1 | 121 | 3/17/2024 |
1.0.0 | 112 | 3/17/2024 |
0.3.8-alpha | 88 | 3/16/2024 |
0.3.7-alpha | 88 | 3/15/2024 |
0.3.6-alpha | 99 | 3/11/2024 |
0.3.5-alpha | 98 | 3/10/2024 |
0.3.4-alpha | 94 | 3/9/2024 |
0.3.1-alpha | 90 | 3/5/2024 |
0.3.0-alpha | 102 | 3/4/2024 |
0.2.16 | 114 | 2/14/2024 |
0.2.15 | 112 | 1/24/2024 |
0.2.14 | 106 | 1/20/2024 |
0.2.13 | 100 | 1/20/2024 |
0.2.12 | 120 | 1/7/2024 |
0.2.11 | 185 | 12/30/2023 |
0.2.10 | 130 | 12/29/2023 |
0.2.9 | 133 | 12/29/2023 |