temporalio / sdk-dotnet

Temporal .NET SDK
MIT License
375 stars 30 forks source link

Fix improper casts during clone #284

Closed cretz closed 2 months ago

cretz commented 2 months ago

What was changed

Fix bad casting during clone and write test that confirms clone works with all of our hand-written options classes

Checklist

  1. Closes #274
cretz commented 2 months ago

Heh, that's a pretty fun bit of reflection

And one that many runtimes can't do. Getting all classes on all JARs in Java is rough and JVM/Python/Node/etc are often based on lazy loading so some things may not be there. But .NET assemblies give you this information up front which is nice.