'DeclarationPublic Sub ReadJson( _ ByVal Stream As System.IO.Stream _ )
public void ReadJson( System.IO.Stream Stream )
Parameters
- Stream
- The Stream to read from
'DeclarationPublic Sub ReadJson( _ ByVal Stream As System.IO.Stream _ )
public void ReadJson( System.IO.Stream Stream )
DicomDataSet ds = new DicomDataSet(); using (FileStream fs = new FileStream("Dataset.json", FileMode.Open, FileAccess.Read)) { ds.ReadJson(fs); }