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
First is based on IL code generation. This one however works only for .NET 4.5
Second is based on LINQ Expressions and is used universally.
Moreover when we need to construct a serializer for a custom data structure (either class or struct), we always do that through DefaultCodeGenerator, which uses only Expression-based compilation chain.
The idea here is to build a code generator using IlCompiler<> as well.
The text was updated successfully, but these errors were encountered:
At this moment we have two compilation chains:
Moreover when we need to construct a serializer for a custom data structure (either class or struct), we always do that through DefaultCodeGenerator, which uses only Expression-based compilation chain.
The idea here is to build a code generator using
IlCompiler<>
as well.The text was updated successfully, but these errors were encountered: