using System.Collections.Generic; namespace Facebook.MiniJSON { public static class MiniJsonUtil { public static T ReadValue(this Dictionary dic, string key) { if (dic.TryGetValue(key, out var objValue)) { return (T) objValue; } return default(T); } } }