I have read several articles and several “stackoverflow” posts about expression tree. It is beating my brain to understand.
Questions:
1)Like DOM (Document Object Model ),Is it an in-memory representation of logics?
2)Somebody explained it is a mechanism to translate an executable code into data,using it we can produce a datastructure that represent the code.
Does it mean,Is expression tree used to design a user defined pattern?
3) Most of the Examples show Expression tree in conjunction with Fun<> delegate or other delegates, So using delegate and other programming construct can’t we achieve the same thing as expression tree serves. Beginners-understandable explanation is highly appreciated.
