vote up 1 vote down star

Is there a way to ignore a field in the calculated of the struct size using Marshal.SizeOf

Ex:

public struct Message
{
   public ushort X;
   public ushort Y; // Ignore this field in the calculation
}

int size = Marshal.SizeOf(typeof(Message));

Right now size is 4. I want the size to be 2. Is there a way to do this?

flag

72% accept rate
A union would be if i explicitly set the field offsets to be the same (C# does have unions), I dont want to do that. – SwDevMan81 Jul 23 at 23:05
I think you have to explain why you want this in order for us to help you. If all you want is to have it be "2", then why not replace it with a literal 2? Or just pass typeof(ushort) to the marshal.sizeof() call. – Isak Savo Aug 17 at 12:03

2 Answers

vote up 1 vote down check

The only way I can think of doing it would be to create a Custom Marshaller and when you implement ICustomMarshaller.GetNativeDataSize, return 0. You would use MarshalAsAttribute to apply the custom marshaller to just that field. But, it won't marshal properly, so I don't know why you would want to do that.

link|flag
vote up 0 vote down

I don't think that's possible. Why would you want to do that?

link|flag

Your Answer

Get an OpenID
or

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