I have installed an external Nuget package and I am using one of its methods too often. Now, I want to call another method(I wrote it myself) right after every method call of that mentioned method. That would be like:
MyExternalNugetPackage.Send(inputs); //varying inputs (in number, type, and values)
MyOwnMethodCall();
Since I have got over thousands of "MyExternalNugetPackage.Send()", I don't wanna get in the trouble of adding "MyOwnMethodCall()" on each and every line. Is there any way I could somehow extend or add a functionality to "MyExternalNugetPackage.Send()" so that within itself it'd call "MyOwnMethodCall()" ?