Skip to content

Commit 6bd7898

Browse files
committed
2 parents ba408ea + 5f3bcb7 commit 6bd7898

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
[![NuGet](http://img.shields.io/nuget/v/AgileObjects.ReadableExpressions.svg)](https://www.nuget.org/packages/AgileObjects.ReadableExpressions)
44

5-
ReadableExpressions is an extension method for the [Expression](https://msdn.microsoft.com/en-us/library/system.linq.expressions.expression.aspx) class and set of Debugger Visualizers to produce readable, source-code string versions of [Expression Trees](https://msdn.microsoft.com/en-us/library/bb397951.aspx). It targets [.NETStandard 1.0](https://blogs.msdn.microsoft.com/dotnet/2016/09/26/introducing-net-standard) and .NET 4.0.
5+
ReadableExpressions is an extension method for the [Expression](https://msdn.microsoft.com/en-us/library/system.linq.expressions.expression.aspx) class and set of Debugger Visualizers to produce readable, source-code string versions of [Expression Trees](https://msdn.microsoft.com/en-us/library/bb397951.aspx). It targets [.NETStandard 1.0](https://blogs.msdn.microsoft.com/dotnet/2016/09/26/introducing-net-standard)+ and .NET 3.5+.
66

77
### Usage
88
The extension method (in the namespace `AgileObjects.ReadableExpressions`) is used like so:
99

1010
string readable = myExpression.ToReadableString();
1111

12+
...it also works on [DynamicLanguageRuntime](https://www.nuget.org/packages/DynamicLanguageRuntime) expressions.
13+
1214
You can optionally maintain explicit generic arguments on method calls where they are implied like so:
1315

1416
string readable = myExpression.ToReadableString(c => c.UseExplicitGenericParameters);

0 commit comments

Comments
 (0)