As per the link, i'm able to pass parquet file from my local folder and able to convert the data into json format. Below is sample code
MemoryStream jsonMs = new MemoryStream();
using (var r = new ChoParquetReader(FILE_NAME))
{
using (var w = new ChoJSONWriter(jsonMs))
w.Write(r);
}
Could any one help me out on how to pass file path which is present in Azure blob? Thanks in advance.