I have a class Satus that has couple properties

Public Class Status 
{
        [DisplayName("Power"), Description("Index 4: transmit power in dBm")]
        public double PwrdBby10
        {
            get { return (_arrayValue[4] / 10.0); }
        }

        [DisplayName("Turbo"), Description("Index 5: transmit turbo size and encoding rate")]
        public string TurboMsgType
        {
            get { return GetEnumString(_arrayValue[5], _elements); }
        }
}

and i have a reflection code that will compare 2 object of the same class and print the different property.

 public string Compare(object object1, object object2)
    {
        var source = object1.GetType();
        var propertyNames = source.GetProperties();
        var s = new StringBuilder();

        foreach (var propertyName in propertyNames)
        {
            var propertyValue1 = propertyName.GetValue(object1, null);
            var propertyValue2 = propertyName.GetValue(object2, null);
            if (propertyValue1.ToString() != propertyValue2.ToString())
            {
                if (s.Length > 0)
                    s.Append(", ");
                s.Append(propertyName.Name);
                s.Append("=");
                s.Append(propertyValue2.ToString());
            }
        }
        return s.ToString();
    }

when i get the result i get the name of the property like "PwrdBpy10 = value" instead i want the displayName to be printed "Power = value" any help how i can get it to work thank you

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You should try this link. I hope it helps

link|improve this answer
Hi no it didnt work for me, there is not DisplayName. Any other idea ?? thank you – jprbest Oct 7 '11 at 18:45
Try this link – Alim Ul Gias Oct 9 '11 at 3:28
thanks this time it works – jprbest Oct 11 '11 at 15:33
feedback

Your Answer

 
or
required, but never shown

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