chaokunyang commented on issue #1359:
URL: https://github.com/apache/fory/issues/1359#issuecomment-3743797635

   @longbai 另外你说的 interface的问题在当前的版本并不存在了:
   
   https://fory.apache.org/docs/next/guide/go/basic_serialization
   
   ```go
   // Serialize any value
   data, err := f.Serialize(value)
   if err != nil {
       // Handle error
   }
   
   // Deserialize into target
   var result MyType
   err = f.Deserialize(data, &result)
   if err != nil {
       // Handle error
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to