Posts by Marcio • 53 points
1 post
- 
		5 votes1 answer75 viewsQ: Is it possible to hide a public method from the abstract class?I have the following scenario: public abstract class ClasseA { public string[] MetodoC(string parametro, string nomeObjeto) { // ações metodo } } public class ClasseB : ClasseA { public string[]…