Hybridizer supports generics and virtual functions. These concepts allow writing flexible code with type parameters, defering actual behavior resolution to type instanciation by client code. These are fondamental features of modern languages, easing encapsulation, code factorization and concepts expression. However in C#, type parameters are resolved at runtime, which comes with a significant performance penalty. […]

READ MORE

Tags: ,


If debug information is available in the input binary (java or dot net), it is re-inserted into the generated source code allowing users to benefit from debugging on the target environment. Illustrated here, a snapshot of a debugging session in NSIGHT Visual Studio edition. It also integrates in profilers such as NSIGHT Visual Studio edition […]

READ MORE

Tags: , ,


We describe here the implementation of Mandelbrot fractal image generation using Hybridizer. The language of choice is C#, and implementation is done using 32-bits precision arithmetic. Mandelbrot set is the set of values c for which the sequence: remains bounded in the complex plane. It happens an equivalent definition is: That means that while calculating […]

READ MORE

Tags: ,