This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Text; | |
var filePath = @"ST_xxxx.uexp"; | |
var outputPath = @"ST_xxxx.csv"; | |
// Open file read only | |
using var fsRead = File.Open(filePath, FileMode.Open, FileAccess.Read); | |
using var br = new BinaryReader(fsRead); | |
// gloss over the header |