aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Installer/Code/ModelExtensions.cs
blob: 66e51ec11739268f35f0365c66909fd620f5f822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System.Collections.Generic;

namespace MediaBrowser.Installer.Code
{
    /// <summary>
    /// Class ModelExtensions
    /// </summary>
    static class ModelExtensions
    {
        /// <summary>
        /// Values the or default.
        /// </summary>
        /// <param name="str">The STR.</param>
        /// <param name="def">The def.</param>
        /// <returns>System.String.</returns>
        public static string ValueOrDefault(this string str, string def = "")
        {
            return string.IsNullOrEmpty(str) ? def : str;
        }

        /// <summary>
        /// Helper method for Dictionaries since they throw on not-found keys
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <typeparam name="U"></typeparam>
        /// <param name="dictionary">The dictionary.</param>
        /// <param name="key">The key.</param>
        /// <param name="defaultValue">The default value.</param>
        /// <returns>``1.</returns>
        public static U GetValueOrDefault<T, U>(this Dictionary<T, U> dictionary, T key, U defaultValue)
        {
            U val;
            if (!dictionary.TryGetValue(key, out val))
            {
                val = defaultValue;
            }
            return val;

        }

    }
}