Visual Studio Code – How to declare a fixed length string type within a record in C#?
I'm trying to create a record type in C# with some fields as fixed length strings. I just want to use this record for further reading of a predefined file format. I tried this: public record Person (int age, fixed…