Hello,
I have a missing assembly error in grasshopper c# component when trying to use Color as input.
- Error (CS0246): The type or namespace name ‘Color’ could not be found (are you missing a using directive or an assembly reference?) (line 55)
Hello,
I have a missing assembly error in grasshopper c# component when trying to use Color as input.
You need to add this line to the editable using blocks area of your C# component:
using System.Drawing;
cool, I didn’t it was possible to add reference like this in a c# component. thx
Editable using blocks is only available in Grasshopper for Rhino 6.