ModelExtensions.cs 534 B

1234567891011121314151617181920
  1. 
  2. namespace MediaBrowser.Installer.Code
  3. {
  4. /// <summary>
  5. /// Class ModelExtensions
  6. /// </summary>
  7. static class ModelExtensions
  8. {
  9. /// <summary>
  10. /// Values the or default.
  11. /// </summary>
  12. /// <param name="str">The STR.</param>
  13. /// <param name="def">The def.</param>
  14. /// <returns>System.String.</returns>
  15. public static string ValueOrDefault(this string str, string def = "")
  16. {
  17. return string.IsNullOrEmpty(str) ? def : str;
  18. }
  19. }
  20. }