ExpressionToString icon indicating copy to clipboard operation
ExpressionToString copied to clipboard

Problem with 'Array' expressions

Open HamedFathi opened this issue 7 years ago • 0 comments

Unfortunately, I have a problem with Array expressions.

I created a dotnetfiddle here

Expression<Func<string[]>> exp = () => new[] { "1","2" };
var str = ExpressionToString.ExpressionStringBuilder.ToString(exp);

The result should be () => new[] { "1","2" } not "1""2"

Please Help me.

HamedFathi avatar Oct 27 '18 08:10 HamedFathi