原始寫法: public class Greeting { public string From { get; set; } public string To { get; set; } public string Message { get; set; } } 如果你覺得合適,也可以添加一個問號(?)來指示該類型可為空,如下所示。 public class Greeting { public string? From { get; set; } public string? To { get; set; } public string? Message { get; set; } } 如果你不想這樣做,可以通過從 csproj 文件中刪除以下行或將其設置為 disable . <Nullable>disable</Nullable>