Exemplo n.º 1
0
        static V[] ArrayCreator <V>(JsonTreeNode src)
        {
            if (!src.IsArray())
            {
                throw new ArgumentException("value is not array");
            }
            var count = src.GetArrayCount();

            return(new V[count]);
        }