Tagged Questions
1
vote
1answer
93 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 ...
1
vote
1answer
411 views
IRAPIStream COM Interface in .NET
I'm trying to use the OpenNETCF RAPI class to interact with a windows mobile device using the RAPI.Invoke() method.
According to the following article:
...