0
What is the meaning of static keyword and its use.
2 ответов
0
usually, it means in a POO languaje that you don't need to make an object to use it, so, if you have a static method called idGenerator in a Security Class, you don't need to do:
Security myObject = new Security();
string id = myObject.idGenerator();
instead
string id = idGenerator();
sorry for my English, I'm from México