0 votes
in Xamarin Exordium by
What is the purpose of XAML compiler (XALC)?

1 Answer

0 votes
by

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.
...