You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Var S:String;
BB: TBitBucketBrowse;
Begin
BB := TBitBucketBrowse.Create;
BB.path.components.Add('Test 1');
BB.path.components.Add('Test 2');
S:=GetDefaultSerializer.SerializeObject(BB); //this is ok
GetDefaultSerializer.DeserializeObject(S, BB);
This raise an error
Invalid class typecast for property "components" [Expected: TList<System.string>, Actual: Array]
Best regards
Armindo
The text was updated successfully, but these errors were encountered:
Hi,
I have a class like that
Now I have for testing
This raise an error
Invalid class typecast for property "components" [Expected: TList<System.string>, Actual: Array]
Best regards
Armindo
The text was updated successfully, but these errors were encountered: