ThreadLocal<T>.ToString Method

Definition

Creates and returns a string representation of this instance for the current thread.

public:
 override System::String ^ ToString();
public override string ToString ();
public override string? ToString ();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Returns

The result of calling ToString() on the Value.

Exceptions

The ThreadLocal<T> instance has been disposed.

The Value for the current thread is a null reference (Nothing in Visual Basic).

The initialization function attempted to reference Value recursively.

No parameterless constructor is provided and no value factory is supplied.

Remarks

Calling this method forces initialization for the current thread, as is the case with accessing Value directly.

Applies to

See also