1
vote
5answers
379 views
Timers, UI Frameworks and bad coupling - Any Ideas?
Hi,
I've just written a small XBox 360 Wireless Controller managed interface that basically
wraps around the low-lever …
2
votes
Call C# methods from C++ without using COM
There is a somewhat "undocumented" way of exporting C style API from a .NET class / method.
This ultimately leads to a situation where a .NET dll has exported APIs that can be called from C …
0
votes
Timers, UI Frameworks and bad coupling - Any Ideas?
The 360 controller can only report it's current state.
There is no other means to get the state without polling.
Using System.Threading.Timer or opening up a new Thread that does Thread.Sleep() is …
0
votes
Timers, UI Frameworks and bad coupling - Any Ideas?
So...
It appears the information / code @ http://geekswithblogs.ne …
0
votes
Timers, UI Frameworks and bad coupling - Any Ideas?
@MattValerio: I know about CCR, but this doesn't really fit the bill here since I plan to put the control on googlecode and the CCR isn't part of the framework or opensource.
…
1
vote
1
vote
Should C# methods that *can* be static be static?
I would definitely turn anything I can into static for a different reason:
Static functions, when JIT'd, are called without a "this" parameter.
That means, for example, that a 3 parameter n …
