Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我是什么吗?符号在以下代码中的含义:
public Rectangle? Limits { get { return _limits; } set {
这意味着它是一个可为空的类型。
例如,DateTime?可以为空,而DateTime不能。
DateTime?
DateTime
它是用于指定可空类型的语法糖。