using System.Collections.Generic; namespace UnitySVG { public static class Extensions { public static string GetValue(this Dictionary dictionary, TKey key) { return dictionary.ContainsKey(key) ? dictionary[key] : string.Empty; } } }