Assets/DataConnection/Scripts/PlatformRequest.cs(231,28): error CS1644: Feature `null propagating operator' cannot be used because it is not part of the C# 4.0 language specification
时间: 2024-04-05 16:33:56 浏览: 131
C#语言规范4.0.
5星 · 资源好评率100%
这个错误提示是说在 C# 4.0 版本中不支持使用 "null propagating operator" 这个特性。这个特性的作用是在访问可能为空的对象时,避免出现 NullReferenceException 异常。如果你想使用这个特性,需要将项目的 C# 版本升级到更高的版本,比如 C# 6.0 或更高版本。你可以在项目的属性设置中找到 C# 版本的选项进行修改。
阅读全文