gpt4 book ai didi

c# - 从对象内的其他属性自动分配属性值

转载 作者:行者123 更新时间:2023-11-30 23:02:24 24 4
gpt4 key购买 nike

我有以下

public class BlogPost
{
public int BlogPostId { get; set; }
public string BlogPostTitle { get; set; }
public string BlogPostDescription { get; set; }
public int Upvotes { get; set; }
public int Downvotes { get; set; }
public int TotalVotes { get; set; }
}

您将如何自动分配 TotalVotes = Upvotes - Downvotes

最佳答案

听起来您正在寻找 calculated property .所以它应该是这样的:

public int TotalVotes
{
get { return Upvotes - Downvotes; }
}

或者,如果您使用的是 C# 6+,则可以使用 expression body像这样:

public int TotalVotes => Upvotes - Downvotes;

关于c# - 从对象内的其他属性自动分配属性值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50501357/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com