Basic understanding

Hello Dynos,

I have some basic stuff again, just to understand the Syntex and the principles of dynamo and programming:
Is it correct that the point (in the picture) marks a class and a methode?
so f. e. math.ceiling = class.methode
math.stores a lot methodes like in the picture?

Like in this C# example:

max.Firstname = “Max”;
max.Lastname = “Mustermann”;
string full = max.GetFullName();
Console.WriteLine(full);

Is this Correct?
Understanding

yes, (methode is method).

in this case you can consider this method to be a constructor because it returns an object of the class type… it’s a distinction that dynamo blurs a bit as it has no “new” keyword like c# does for invoking c# constructors.

1 Like