|   | 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.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
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 Tpublic:
[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.
Parameters
- 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
See Also