Build objects with variable number of members? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T22:06:14Zhttp://stackoverflow.com/feeds/question/378229http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/378229/build-objects-with-variable-number-of-members0Build objects with variable number of members?boris callens2008-12-18T15:43:30Z2008-12-18T15:54:37Z
<p>In my asp.net mvc page, I want to call a RedirectToAction(actionName, controllerName, values). </p>
<p>The values parameter is an object that contains all the nessecary values.
Example</p>
<pre><code>return RedirectToAction(redirectAction, redirectController,
new{ personId = foundId,
personEmail = foundEmail,
personHeigh = foundHeight});
</code></pre>
<p>This is all well, if none of those parameters is null or an empty string.
When that happens, System.Uri.EscapeDataString(String stringToEscape) throws a ArgumentNullException.<br />
The problem is I don't know at compile time what parameters will be null. Also, I would prefer not to make an object for each possible combination of notnull values.<br />
In my example there are only three params, but what if would have 10? The possible combinations grow exponentially.
Since it is not possible to add fields to an anon type, I cannot add the parameters one by one either.</p>
<p>How can I solve this issue?</p>
http://stackoverflow.com/questions/378229/build-objects-with-variable-number-of-members/378287#3782872Answer by Kieron for Build objects with variable number of members?Kieron2008-12-18T15:54:37Z2008-12-18T15:54:37Z<p>You can force non-null values...</p>
<pre><code>return RedirectToAction(redirectAction, redirectController,
new{ personId = foundId,
personEmail =foundEmail ?? string.Empty,
personHeigh = foundHeight ?? string.Empty});
</code></pre>