Login
Remember
Register
Ask a Question
What is the purpose of XAML compiler (XALC)?
0
votes
asked
Jun 4, 2022
in
Xamarin Exordium
by
sharadyadav1986
What is the purpose of XAML compiler (XALC)?
xaml-compiler
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 4, 2022
by
sharadyadav1986
Using the XAML compiler, we can directly compile XAMLs into intermediate (IL) language.
Benefits:
It performs the compile-time checking to find the error in XAML. At compile time it notifies the user about any mistake.
It removes the overheads and initialization time for XAML elements.
It doesn't include the XAML file into the final assembly, and thus it reduces the assembly time.
...