I need to get fieldinfo in a guaranteed order with respect to declaration order. Right now I'm using attributes to specify order.

Is there a more automatic way of doing this?

Does anyone have knowledge of how LayoutKind.Sequential works, and if I can apply it's technique.

I don't see how LayoutKind.Sequential works, unless there's some precompiler code that adds attributes.

link|improve this question

+1. I'm interested in seeing this, too. – Adam Robinson Nov 9 '11 at 15:43
This is to automate marshalling where the custom marshaller fails to guarantee size on objects with varying native size. (get size on custom marshaller doesn't give you an pointer to actual data or structure to operate on in cases where an object can have varying native size). So if say I wanted to prepend an size or count to any array or string, I have to do it manually, since I can't do it with a custom marshaller and ask the object for it's native data size. – Xaade Nov 9 '11 at 15:46
This only makes a statement about the implementation of GetFields(), not about the way the CLR implements member layout. The caching of reflection data is the trouble. Significantly revised in .NET 2 btw, not so sure it is still true. – Hans Passant Nov 9 '11 at 16:42
Metadata can be (and I suspect is, and have evidence that it is) independent of how it is arranged in managed memory. – Xaade Nov 9 '11 at 21:57
feedback

2 Answers

up vote 2 down vote accepted

If you want the ordering of the fields returned by GetFields to be stable, try sorting by the MetaDataToken property.

Type myType = ...
BindingFlags flags = ...
IEnumerable<FieldInfo> orderedFields = myType.GetFields(flags)
                                             .OrderBy(field => field.MetaDataToken);

Empirically, ordering fields in this manner has been found to return them in declaration order, although this isn't documented.

By the way, the question as asked doesn't entirely make sense; there isn't any reason to believe that the reflection API is tied in any way to how the runtime lays objects out in memory.

link|improve this answer
I don't care how the objects are laid out in managed memory. All I want is a way to guarantee an order so I can arrange things in native memory. An order specifier is enough, even if this isn't reflected in managed layout order. As a matter of fact, I would prefer the two not be tied together. – Xaade Nov 9 '11 at 16:00
Could the downvoter please explain? – Ani Nov 9 '11 at 16:05
I get your question now. Updated question to say "guaranteed declaration order" – Xaade Nov 9 '11 at 16:21
Are metadata tokens in order even if Sequential is not specified? – Xaade Nov 9 '11 at 18:58
feedback

LayoutKind.Sequential specifies that the fields of the type should be laid out in memory in the same order they are declared in your source code.

Without the attribute the CLR is free to optimize memory use by rearranging the fields.

So the attribute just adds metadata that tells the CLR not to do any in memory optimalisation that messes up the order of fields.

link|improve this answer
What metadata does it add. How do I access this metadata. – Xaade Nov 9 '11 at 15:50
do you exactly what? I'm know. but like most metadata, you can probably access it using reflect. see MemberInfo, and you can probably get it by using GetCustomAttributes(typeof(LayoutKind)) – Ron Sijm Nov 9 '11 at 15:56
-1, as this does not answer the question; it only explains what LayoutKind.Sequential is, which is not in question here. – Adam Robinson Nov 9 '11 at 16:05
1  
He's answering "how's it work" with "what it does". – Xaade Nov 9 '11 at 16:23
feedback

Your Answer

 
or
required, but never shown

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