[Solved] How to call a non-static method from another class without using instances in c#?
This all depends on the functionality of your Connections class. The easiest answer I can give is that you can make the individual methods static, assuming they don’t require instance specific data. If your individual methods require instance specific data, then you could possibly make the instance a singleton instance (either through have an Instance … Read more