public virtual object Load(YamlNodeImpl node, Type type)
        {
            string data = this.Dump(node.innerDictionary);

            return(this.Load(data, type));
        }
 public T Load <T>(YamlNodeImpl node) =>
 (T)this.Load(node, typeof(T));