SoapYear.Value Property

Definition

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 SoapYear class.

// Print out the value of the SoapYear object.
Console::WriteLine( "The value of the SoapYear instance is {0}.",
   date->Value );
// Print the value of the SoapYear object.
Console.WriteLine("The value of the SoapYear object is {0}.",
    year.Value);

Applies to