I have a solution where it contains 2 projects.
One of them is the project I pulled through github, so I do not want to modify it because every time I update I will lose my settings.
In this project there is a class called:
public class Cielo
{
String sendHttpRequest (String message)
{
//Quero q toda vez que o sistema chamar esse metódio chame um código meu, ex:
//var gravaXML = new SalvaXML();
//gravaXML.GravarFisicamente(message);
}
}
But I want to inject this function through my 2nd project, I do not want to modify the project already ready from git. Is there such a thing as?