vote up 1 vote down star

I wish to write a structure made up of fixed length strings to a file using My.Computer.FileSystem.WriteAllBytes or the like.

I am using a VB6 project with fixed length strings that I have converted in to VB.Net.

    Structure Record
    	<VBFixedString(22),System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray,SizeConst:=22)> Public tim() As Char
    	<VBFixedString(130),System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray,SizeConst:=130)> Public des() As Char
    	<VBFixedString(2),System.Runtime.InteropServices.MarshalAs(System.Runtime.InteropServices.UnmanagedType.ByValArray,SizeConst:=2)> Public crlf() As Char
    End Structure

Still new to marshalling in C#, but how would I get this structure to an array of bytes to write to a file. Is there some marshalling trick or am I going to have to write a custom method?

flag

As a side note, a structure is not a reference type. It's a value type. – Mehrdad Afshari Aug 17 at 18:25
Changed in title. I knew that but for some reason still wrote reference. – dnh828 Aug 17 at 19:00

1 Answer

vote up 6 vote down check

Use serialization mechanisms provided by the .NET framework:

Dim formatter As New BinaryFormatter
formatter.Serialize(outputFileStream, objectInstance)

You should add <Serializable()> attribute to your type.

link|flag
@dnh828, To add to @Mehrdad's answer, also make sure all the types in the object graph you are trying to convert are decorated with the [Serializable] attribute... – Charles Bretana Aug 17 at 16:35
How do I apply the serializable attribute to these fixed length strings? – dnh828 Aug 17 at 17:49
You don't need to. Just apply it to the Structure. Char arrays are serializable. – Mehrdad Afshari Aug 17 at 17:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.