문제

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