Build objects with variable number of members? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T22:06:14Z http://stackoverflow.com/feeds/question/378229 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378229/build-objects-with-variable-number-of-members 0 Build objects with variable number of members? boris callens 2008-12-18T15:43:30Z 2008-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#378287 2 Answer by Kieron for Build objects with variable number of members? Kieron 2008-12-18T15:54:37Z 2008-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>