I have a compiled exe written with C# by an external company. While openning this exe file, it loads different C# scripts, which carries out different functions, such as read ASIC EEPROM (EEPROM.cs), calculate coefficients and so on. Unfortunately this exe file doesn't save data to database. Therefore I wrote my own C# code which can connect and save data to the database. I compiled my own code as dll.
Now I would like to write part of code inside EEPROM.cs so that the data can be saved to the database. However, when I open EEPROM.cs file, there is nowhere to add reference.
How can I achieve my goal? Thanks a lot!