سؤال

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