'Declaration
Public Overloads Shared Function Deserialize( _ ByVal filePath As String, _ ByVal objectType As Type _ ) As Object
'Usage
Dim filePath As String Dim objectType As Type Dim value As Object value = SerializationHelper.Deserialize(filePath, objectType)
public static object Deserialize( string filePath, Type objectType )
public function Deserialize( filePath: String; objectType: Type ): TObject; static;
public static function Deserialize( filePath : String, objectType : Type ) : Object;
public: static Object* Deserialize( string* filePath, Type* objectType )
public: static Object^ Deserialize( String^ filePath, Type^ objectType )
Parameters
- filePath
- The file path.
- objectType
- Type of the object.