Initializes a target reference type with the type's default constructor if the target has not
already been initialized.
Namespace:
System.Threading
Assembly:
System.Threading (in System.Threading.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Shared Function EnsureInitialized(Of T As Class) ( _
ByRef target As T _
) As T |
C# |
---|
public static T EnsureInitialized<T>(
ref T target
)
where T : class
|
Parameters
- target
- Type:
T
%
A reference of type T to initialize if it has not
already been initialized.
Type Parameters
- T
- The refence type of the reference to be initialized.
Return Value
The initialized reference of type
T.
Remarks
Exceptions
Exception | Condition |
---|
System..::.MissingMemberException | Type T does not have a default
constructor. |
System..::.MemberAccessException |
Permissions to access the constructor of type T were missing.
|
See Also