This has nothing to do with method but with class and yours namespace. FTP
is the class and in it will contain methods. Net
is only the surname of this class. Namespaces are like modules that contain class, but not exactly. In some languages it is confused with a package of classes that has a slightly different concept, the exact way of each language should be seen in its documentation.
Has an explanation of How namespaces work in C#?. The language chose to use the dot to namespaces also, but the idea is the same.
Thank you, I’ve seen
namespace
simple in C++ code over the internet but did not know the link you pointed out.– Luis Souza