This documentation is archived and is not being maintained.
Lazy<T>::ToString Method
Visual Studio 2010
Creates and returns a string representation of the Lazy<T>::Value property for this instance.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System::StringThe result of calling the Object::ToString method on the Lazy<T>::Value property for this instance, if the value has been created (that is, if the IsValueCreated property returns true). Otherwise, a string indicating that the value has not been created.
| Exception | Condition |
|---|---|
| NullReferenceException | The Lazy<T>::Value property is nullptr. |
Calling this method does not cause initialization.
The Lazy<T>::Value property can be nullptr after lazy initialization if the factory method that was specified for the valueFactory parameter of the Lazy<T>, Lazy<T>, or Lazy<T> constructor returns nullptr.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: