开发者

C# why sizeof is unsafe and how to get size of a struct in a safe way?

开发者 https://www.devze.com 2022-12-22 07:30 出处:网络
I\'ve defined a struct to send via socket. I\'d like to get the size of it but sizeof is unsafe an开发者_JAVA百科d the same for \"System.Runtime.InteropServices.MarshalSizeOf\". Is there a way to get

I've defined a struct to send via socket. I'd like to get the size of it but sizeof is unsafe an开发者_JAVA百科d the same for "System.Runtime.InteropServices.MarshalSizeOf". Is there a way to get its size in a safe way?


There is no way to do it for managed structs. Marshal.SizeOf will only return the size of the data on the marshaled types that comprise the struct... that MIGHT be correct for the managed types on some platforms, but not on others.

This is by design so the JIT can lay structs differently depending on the platform it runs on.

More info here: Chris Brumme's blog


See my blog post for a wrapper library that lets you determine what the JIT will define the managed type's size will be(at runtime). It works by using the sizeof IL instruction which isn't exposed at all in C#. It can be run with no special permissions at all and is verifiable.

Note: this may or may not be what you actually want. This might return 8 for a structure that actually only has a single byte in it. I don't really understand your question completely, so I'm not sure if this is actually what you want or not.

0

精彩评论

暂无评论...
验证码 换一张
取 消