mgoldste1

Results 4 issues of mgoldste1

I'm finally fully approved to publish my LinqToStdf code changes. https://github.com/mgoldste1/LinqToStdf/tree/marklio/net7 All my changes are based off of the net7 branch. I downgraded the project to net7 instead of net8....

So I'm in the validation phase of my converter and I found 1 stdf file that my parser can't handle. I've spent a large portion of my week looking into...

I know you said at one point writing STDF files with this library was kinda iffy. I was just using it to create some stdf files for some unit tests...

``` CodeNode GenerateAssignment(KeyValuePair pair) { var fieldType = pair.Key.FieldType; //if this is an array, defer to GenerateArrayAssignment if (pair.Key is ArrayFieldLayoutAttribute) { // TODO: Why do we need these fieldType...