ExpressionToCode
ExpressionToCode copied to clipboard
Generates valid, readable C# from an Expression Tree.
Bumps [FastExpressionCompiler](https://github.com/dadhi/FastExpressionCompiler) from 3.3.2 to 3.3.3. Release notes Sourced from FastExpressionCompiler's releases. v3.3.3 Bug-fix release fixed: #336 Method TryCompileBoundToFirstClosureParam is returning passed Type array to pool may cause undefined behavior...
_From [stephen.swensen](https://code.google.com/u/105074354266714820623/) on January 11, 2012 21:44:44_ Something similar to Unquote's "raises" operator: https://code.google.com/p/unquote/wiki/GettingStarted . i.e. the assertion fails if the excepted exception (a generic argument) is not a subclass...
_From [eamon.nerbonne](https://code.google.com/u/eamon.nerbonne/) on February 03, 2011 10:02:14_ Calling Fizz, with Fizz as: ``` bool Fizz(Func a) { return a(42); } bool Fizz(Func a) { return a("42"); } ``` then Fizz(x...
_From [eamon.nerbonne](https://code.google.com/u/eamon.nerbonne/) on January 11, 2011 16:07:47_ PowerAssert.NET gives hints when objects aren't "equal" in one sense but are in another: e.g. if == fails, then if .Equals or .SequenceEqual...
_From [eamon.nerbonne](https://code.google.com/u/eamon.nerbonne/) on January 11, 2011 16:13:26_ As per summary; but is this a good idea? when to use which syntax? _Original issue: http://code.google.com/p/expressiontocode/issues/detail?id=6_
Similar to https://github.com/drewnoakes/il-visualizer which I am currently using in [FEC](https://github.com/dadhi/FastExpressionCompiler). I believe it will simplify my life and for others who working with building expression trees. Option for cutting of...
There exists also https://github.com/jbevain/mono.linq.expressions Maybe it will useful for you?
I have test project which is strongly signed. I know that having testing project strongly signed is stupid, but we have many of these and hope published ExpressionToCodeLib to be...
Add XML comments along with dll.
I'd like to add support for byte array constants, these are currently failing in [ExpressionToCodeImpl.DispatchConstant](https://github.com/EamonNerbonne/ExpressionToCode/blob/master/ExpressionToCodeLib/Internal/ExpressionToCodeImpl.cs#L537). Should this go in `PlainObjectToCode`, or is there a more appropriate place?