C# in Rhino: Which Type Should Be Used For ObjectAttributes

Hi All,

I am trying to use object attribute as a input in grasshopper c# but I am stuck at the type hint, which one should I use to prevent the error?

Thanks in advance!
K

In a C# scripting component you can pass any value type as object and cast it to your type in RunScript().

Thanks Dani