I'm working on a program, in C#, that uses both a System.IO.BinaryWriter and a System.IO.Streamwriter to create two datafiles.
I know how to retrieve/set the Assembly of my C# program.
What I'd like to do, is embed my C# program's assembly information into the binary datafiles' assembly. That way, an end-user could get the Properties->Details of the datafile(s) and know which version of the C# program created them.
Anyone know of a way to do this?
Thanks.