C# component takes 500ms on load

Hi all,

Been coding more C# components in GH recently, and I’ve noticed that each C# will require about 500ms when I load a document, even if the component does something extremely simple that usually take a few ms.
Also, when I cluster a C#, it’ll sometimes cause the cluster to run for ~500ms.

I’m wondering if there’s some method around this load time? or is it just how things work?

thanks

1 Like

It is the compilation which takes time. If you make components in Visual Studio and (pre)compile them there it won’t have to recompile each time you open GH

// Rolf

2 Likes