eventdelegates.cs

来自「WJ Communications RFID example code」· CS 代码 · 共 23 行

CS
23
字号
//==========================================================================================
//
//	WJ.MPR.Util.MPREventDelegates
//	Copyright (c) 2006, WJ Communications, Inc.
//
//	Useful Event Handler type delegates.
//
//==========================================================================================
using System;

namespace WJ.MPR.Util
{
	/// <summary>
	/// Delegate for events with a bool argument.
	/// </summary>
	public delegate void BoolEventHandler(bool Flag);

	/// <summary>
	/// Delegate for events with a string argument.
	/// </summary>
	public delegate void StringEventHandler(string Message);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?