Shrey Shah
Results
1
issues of
Shrey Shah
var stream = new FileStream(@"....\ExtractorsUnitTests\InputFiles\Test.json", FileMode.Open); Encoding encoding = Encoding.UTF8; var streamList = new USqlStreamReader(stream).Split(encoding.GetBytes("\r\n")).ToList(); Although, the file has multiple lines the "streamList" only gets the first line(first stream) as...