Tagged Questions
1
vote
1answer
98 views
RAPI Approach: 1 static instance for the entire winforms app vs create,connect,dispose
In many places in our application we have code like this:
using(RAPI rapi = new RAPI())
{
bool connected = TryToConnectWithTimeout(rapi);
if(connected)
DoSomethingWithRapi(rapi);
}
This has ...