From [Rick Strahl][1]:

You can chain the ?? operator so that you can do a bunch of null comparisons.

    string result = value1 ?? value2 ?? value3 ?? String.Empty;

  [1]: http://www.west-wind.com/weblog/posts/236298.aspx