I found C# component calculates expression faster than the math component in grasshopper. Is it just me feel like that?
If you refer to the Expression component, it will always be slower than another way of doing the same thing because before doing the operation it has to parse the text into machine-understandable operations, so it will always have one more layer of computation.
3 Likes
Thank you very much for your answer.