I want to create a simple PushButton class which wraps an InterruptPort. I'd like to give it two simple Up and Down events which are triggered when the port is high and low.

Normally I'd do it like this:

public event EventHandler<EventArgs> Up;
public event EventHandler<EventArgs> Down;

But there's no EventHandler class? How should I do it then?

有帮助吗?

解决方案

.NET Micro Framework does not support generics, but the non-generic EventHandler is still available.

So you can use it like:

public event EventHandler Up;
public event EventHandler Down;

Namespace: Microsoft.SPOT

Assembly: Microsoft.SPOT.TinyCore (in microsoft.spot.tinycore.dll)

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top