Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#

Dynamically Check Nested Values for IsNull Values

Rate me:
Please Sign up or sign in to vote.
4.78/5 (8 votes)
22 Aug 2014CPOL5 min read 34.2K   14  
Dynamically check a value for Null value in an expression tree with an extension method

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Pode Croject
South Africa South Africa
Life(bool alive){
if (alive) Continue;
Learn();}


WriteProgram(bool possible){
bool errorFreeCode;
if (possible || !possible) errorFreeCode = false;
else errorFreeCode = true;}


And always remember!
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live.
(Martin Golding)

Just a proof note for David and Carel

Comments and Discussions