8000 GitHub - albahari/ExpressionFormatter: Pretty printer and visitor for System.Linq.Expressions.Expression
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

albahari/ExpressionFormatter

Repository files navigation

Simple Demo:


		static void Main (string [] args)
		{
			Expression<Func<int, bool>> expr = x => x % 2 == 0;
			Console.WriteLine (expr.Format ());

			Console.WriteLine ();

			var query =
				from c in "The quick brown fox uses LINQPad".AsQueryable ()
				where c != ' '
				orderby c
				select char.ToUpper (c);

			Console.WriteLine (query.Expression.Format ());
		}

About

Pretty printer and visitor for System.Linq.Expressions.Expression

Resources

License

MIT, MIT licenses found

Licenses found

MIT
LICENSE
MIT
license.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0