1
I don’t even know how to ask the question, but I’ll try. I have a static method in a parent class, and I planned to overwrite in the child classes, but from what I’m seeing here, this is not possible.
I remembered a feature that you have in Java, in which I don’t even remember how to apply in the method signature, but I know that when you will call the method, you call more or less like this:
nomeDoMetodo(NomeDaClasse.class);
I think this might be a more correct way to make the method do different behaviors.
I was wondering if you had a way to do that at C#?
Your question is not very clear. But I would indicate you search for delegates. It may suit your need.
– Ayrton Giffoni