|
SerializationCloneObjectT Method
|
Note: This API is now obsolete.
Creates a clone of a serializable object.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.205-beta+5ef4169f3b1079d8b163dd363614f656bd140924
Syntax [ObsoleteAttribute("This method will be removed in future builds.")]
public static T CloneObject<T>(
T sourceObject
)
<ObsoleteAttribute("This method will be removed in future builds.")>
Public Shared Function CloneObject(Of T) (
sourceObject As T
) As T
public:
[ObsoleteAttribute(L"This method will be removed in future builds.")]
generic<typename T>
static T CloneObject(
T sourceObject
)
[<ObsoleteAttribute("This method will be removed in future builds.")>]
static member CloneObject :
sourceObject : 'T -> 'T
JavaScript does not support generic types or methods.
View SourceParameters
- sourceObject T
- The type source to be cloned.
Type Parameters
- T
- The type of the cloned object.
Return Value
TA clone of
sourceObject.
See Also