SoapYearMonth.Value Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the date and time of the current instance.
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
Property Value
The DateTime object that contains the date and time of the current instance.
Examples
The following code example shows how to use this property. This code example is part of a larger example that is provided for the SoapYearMonth class.
// 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);
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.