简体   繁体   中英

How to get values of all properties inside a class

public class SumsThirdDegree : ThirdDegree
{
    public SumsThirdDegree(List<ThirdDegree> allValues)
    {
        this.SumAllValues(allValues);
    }

    private void SumAllValues(List<ThirdDegree> allValues) 
    {
        this.X = allValues.Sum(x => x.X);
        this.Y = allValues.Sum(x => x.Y);
        this.XY = allValues.Sum(x => x.XY);
        this.XSecY = allValues.Sum(x => x.XSecY);
        this.XThirdY = allValues.Sum(x => x.XThirdY);
        this.XSecond = allValues.Sum(x => x.XSecond);
        this.XThird = allValues.Sum(x => x.XThird);
        this.XFourth = allValues.Sum(x => x.XFourth);
        this.XFifth = allValues.Sum(x => x.XFifth);
        this.XSixth = allValues.Sum(x => x.XSixth);
    }

    public override string ToString()
    {
        StringBuilder sb = new StringBuilder();
        
        var allProperties = this.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);

        foreach (var prop in allProperties)
        {
            sb.AppendLine($"Sum of {prop.Name} is: {prop.GetValue()}");
        }

        return sb.ToString();
        
    }
}

It is about ToString() method because I want to dynamically get all props names and their values. I don't know if it is possible to do that inside of the current class.

It is not issue, however this can be removed here:

var allProperties = GetType().GetProperties();

And set this object as parameter for prop.GetValue(object? obj) .

The whole code would look like this:

public override string ToString()
{
    StringBuilder sb = new StringBuilder();

    var allProperties = GetType().GetProperties();

    foreach (var prop in allProperties)
    {
        sb.AppendLine($"Sum of {prop.Name} is: {prop.GetValue(this)}");
    }

    return sb.ToString();
}

An example can be seen here:

class A
{
    public int Foo { get; set; }
}

class B : A
{
    public string Bar { get; set; }

    public override string ToString()
    {
        StringBuilder sb = new StringBuilder();

        var allProperties = GetType().GetProperties();

        foreach (var prop in allProperties)
        {
            sb.AppendLine($"Sum of {prop.Name} is: {prop.GetValue(this)}");
        }

        return sb.ToString();
    }
}

and you can run the above code like this:

B c = new B() { Foo = 1, Bar = "2" };
string str = c.ToString();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM