是否可以在没有私有支持字段的情况下为 getter 分配返回值 C# [duplicate]

Is it possible to assign return value for getter without private backing field C# [duplicate]

提问人:Anthony Voronkov 提问时间:11/14/2023 更新时间:11/14/2023 访问量:52

问:

我遇到了以下示例:

public class TimeService
{
    public TimeService()
    {
        Time = DateTime.Now.ToLongTimeString();
    }
    public string Time { get; }
}

我们有一些属性,例如,以下是使用空字符串初始化的示例:,但是如果不能直接为 getter 属性赋值,则 from TimeService 如何工作?public string StringProperty { get; set; } = "";Time

也许,我在浏览时没有正确表述我的问题,但我还没有找到合适的答案。

C# 属性 getter

评论


答: 暂无答案