I need to get all the properties using reflection in the order in which they are declared in the class. According to MSDN the order can not be guaranteed when using GetProperties()

The GetProperties method does not return properties in a particular order, such as alphabetical or declaration order.

But I've read that there is a workaround by ordering the properties by the MetadataToken. So my question is, is that safe? I cant seem find any information on MSDN about it. Or is there any other way of solving this problem?

My current implementation looks as follows:

var props = typeof(T).GetProperties(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic)
            .OrderBy(x => x.MetadataToken);
link|improve this question

10  
Anyway, it is bad idea. Create your own attribute with order value or any other metadata and mark fields of class with that attribute. – Kirill Polishchuk Jan 30 at 10:21
1  
You could perhaps add a new attribute which contains an int of the order. Then get the properties, get each property's DisplayOrderAttribute and sort by that? – BlueChippy Jan 30 at 10:22
1  
Out of curiosity, why are you doing this, what are you trying to achieve? – Sam Greenhalgh Jan 30 at 11:03
I'm writing the content of the objects to a text file. And the output needs to be in a specific order. – Magnus Jan 30 at 11:59
But im probably gonna go with @KirillPolishchuk recommendation on this. – Magnus Jan 30 at 12:11
feedback

2 Answers

up vote 1 down vote accepted

According to MSDN MetadataToken is unique inside one Module - there is nothing saying that it guarantees any order at all.

EVEN if it did behave the way you want it to that would be implementation-specific and could change anytime without notice.

See this old MSDN blog entry.

I would strongly recommend to stay away from any dependeny on such implementation details - see this answer from Marc Gravell.

IF you need something at compile time you could take a look at Roselyn (although it is in a very early stage).

link|improve this answer
feedback

If you're going the attribute route, here's a method I've used in the past;

public static IOrderedEnumerable<PropertyInfo> GetSortedProperties<T>()
{
  return typeof(T)
    .GetProperties()
    .OrderBy(p => ((Order)p.GetCustomAttributes(typeof(Order), false)[0]).Order);
}

Then use it like this;

var test = new TestRecord { A = 1, B = 2, C = 3 };

foreach (var prop in GetSortedProperties<TestRecord>())
{
    Console.WriteLine(prop.GetValue(test, null));
}

Where;

class TestRecord
{
    [Order(1)]
    public int A { get; set; }

    [Order(2)]
    public int B { get; set; }

    [Order(3)]
    public int C { get; set; }
}

The method will barf if you run it on a type without comparable attributes on all of your properties obviously, so be careful how it's used and it should be sufficient for requirement.

I've left out the definition of Order : Attribute as there's a good sample in Yahia's link to Marc Gravell's post.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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