SoapYearMonth.Value 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置当前实例的日期和时间。
public:
property DateTime Value { DateTime get(); void set(DateTime value); };
public DateTime Value { get; set; }
member this.Value : DateTime with get, set
Public Property Value As DateTime
属性值
该 DateTime 对象,包含当前实例的日期和时间。
示例
下面的代码示例演示如何使用此属性。 此代码示例是为 SoapYearMonth 类提供的一个更大示例的一部分。
// Display the value of the SoapYearMonth object.
Console::WriteLine( "The value of the SoapYearMonth instance is {0}.",
yearMonth->Value );
// Display the value of the SoapYearMonth object.
Console.WriteLine("The value of the SoapYearMonth object is {0}.",
yearMonth.Value);