예제 #1
0
        public static bool TryGet(this JsonNode self, String key, out JsonNode found)
        {
            var ukey = Utf8String.From(key);

            return(self.TryGet(ukey, out found));
        }