B
Berryl Hesh
I start with a list:, {"one", null, "three"}. I want to change the null
value to say "<nothing>" and pass along the entire result (now {"one",
"<nothing>", "three"}.
I can select the null value doing something like the line below, but is
there a way to change it from linq as one might in sql?
Thanks ! BH
new[] {"one", null, "three"}.Where(x=>x == null)
value to say "<nothing>" and pass along the entire result (now {"one",
"<nothing>", "three"}.
I can select the null value doing something like the line below, but is
there a way to change it from linq as one might in sql?
Thanks ! BH
new[] {"one", null, "three"}.Where(x=>x == null)