up vote 19 down vote favorite
3
share [g+] share [fb]

Here's the scenario...

if (entry.Properties["something"].Value != null)
  attribs.something = entry.Properties["something"].Value.ToString();

While effective and working correctly, this looks ugly to me. If I don't check for a null before performing the ToString() then it throws an exception if the property was null. Is there a better way to handle this scenario?

Much appreciated!

link|improve this question

So, what should the output be if the value is null? – Zach Scrivena Feb 15 '09 at 5:36
It would use the default value assigned to attribs.something – Dscoduc Feb 15 '09 at 5:36
feedback

10 Answers

up vote 28 down vote accepted

(edited to actually work :) )

object defaultValue = "default";
attribs.something = (entry.Properties["something"].Value ?? defaultValue).ToString()

Edit: I've also taken to using this, which isn't terribly clever but convenient:

public static string ToSafeString(this object obj)
{
    return (obj ?? string.Empty).ToString();
}
link|improve this answer
1  
Do you know off hand if the "default" could be replaced with string.Empty? – Dscoduc Feb 15 '09 at 5:45
@Dscoduc - Sure. – Rex M Feb 15 '09 at 5:45
+1 and Answer: Just tested it and worked perfectly... Thank you! – Dscoduc Feb 15 '09 at 5:53
Note that if the method making the call runs more than once and attribs is reused then you may be overwriting valid data gotten on 1 call with 'default' on a subsequent call. – xcud Feb 15 '09 at 6:20
@xcud: True. In that case, he should use the following code: attribs.something = (entry.Properties["something"].Value ?? (objcet)attribs.something).ToString(); – configurator Feb 15 '09 at 14:42
feedback

If you are targeting the .NET Framework 3.5, the most elegant solution would be an extension method in my opinion.

public static class ObjectExtensions
{
    public static string NullSafeToString(this object obj)
    {
        return obj != null ? obj.ToString() : String.Empty;
    }
}

Then to use:

attribs.something = entry.Properties["something"].Value.NullSafeToString();
link|improve this answer
I wish this was built into the C# framework... – Dscoduc Feb 15 '09 at 17:32
Beautiful. I'm just facing a conversion from 1.1 to 4.0, and in 1.1, null.ToString() actually returned "", so I got a couple of thousand occurrences to check for null-safety now. If I get this to work, this will make the transition so much smoother! – Nicolas78 Nov 13 '10 at 18:06
Wow did this ever save me a lot of time! Thanks! – Brad Aug 25 '11 at 17:02
feedback

Convert.ToString(entry.Properties["something"].Value);

link|improve this answer
that works since it returns empty string if value is null. – Simone Maynard May 11 '11 at 16:23
feedback

Can you not do:

attribs.something = entry.Properties["something"].Value as string;
link|improve this answer
No, you can't; if it's 'null' you'll get a null reference error. – George Stocker Sep 7 '10 at 19:29
1  
that works since it returns null string if value is null, and it does not throw exception. – Simone Maynard May 11 '11 at 16:23
Simone is right, and it seems cleanest to me.. – Steve Lamb Oct 13 '11 at 20:59
This does not work for value types. 'string str = myFloat as string;' fails. You will get the following compiler error Cannot convert type 'float' to 'string' via a reference conversion, boxing conversion, unboxing conversion, wrapping conversion, or null type conversion – CleanCoder Jan 13 at 23:12
feedback

As a variation to RexM's answer:

attribs.something = (entry.Properties["something"].Value ?? attribs.something).ToString()

The only downside would be that the attribs.something would be assigned a value (itself, in this example) even if entry.Properties["something"].Value was null - which could be expensive if the .something property did some other processing and/or this line executes a lot (like in a loop).

link|improve this answer
+1 Great addition! Thank you! – Dscoduc Feb 15 '09 at 5:51
feedback

To do precisely what you're trying to do a helper method can always be used:

CopyIfNotNull(entry.Properties["something"].Value, out attribs.something);

void CopyIfNotNull(string src, out string dest)
{
  if(src != null)
    dest = src;
}
link|improve this answer
Don't you have to specify "out" in the second argument of the CopyIfNotNull? – Dscoduc Feb 15 '09 at 5:54
yup. I realized that after I posted it. – Mike Hall Feb 15 '09 at 21:27
feedback

How about using an auxiliary method like this:

attribs.something = getString(
    entry.Properties["something"].Value, 
    attribs.something);

static String getString(
    Object obj,
    String defaultString)
{
    if (obj == null) return defaultString;
    return obj.ToString();
}

Alternatively, you could use the ?? operator:

attribs.something = 
    (entry.Properties["something"].Value ?? attribs.something).ToString();

(note the redundant ToString() call when the value is null)

link|improve this answer
feedback
attribs.something = String.Format("{0}", entry.Properties["something"].Value);

Not sure about performance though...

link|improve this answer
feedback

Is it somehow possible to do something like Dale Ragan's answer above, but overriding ToString() instead of creating a new NullSafeToString() method? I'd like this (or returning "null") to be the default behaviour. The compiler (Visual C# 2010 Express) doesn't complain when I add the following method to public static class ObjectExtensions, but the method doesn't get called...

public static String ToString(this Object obj)
{
    if (obj == null)
    {
        return "null";
    }
    else
    {
        return obj.GetType().Name;
    }
}
link|improve this answer
Sure, since instance methods have higher priority than extension methods – codymanix Jun 20 '11 at 15:19
feedback
attribs.something  = string.Format("{0}",entry.Properties["something"].Value)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.