我界定了“回馈”现场和事件财产:
private Action<int, int, TaskCallbackArgs> _callbackEvent
/// <summary>
/// Provides a callback event for task.
/// </summary>
public event Action<int, int, TaskCallbackArgs> CallbackEvent
{
add
{
_callbackEvent += value;
}
remove
{
_callbackEvent -= value;
}
}
In my code I have invoke the _callbackEvent
. All right, but when I type _callbackEvent(
VS show me IntelliSense that my method want (int arg1, int arg2, TaskCallbackArgs arg3)
arguments.
When I open this code some time later I don t remember what is arg1, arg2 and arg3.
www.un.org/Depts/DGACM/index_spanish.htm 是否有办法在实地使用XML文件如下:
/// <summary>
/// Description
/// </summary>
/// <param name="current">Param description...</param>
/// <param name="total">Param description...</param>
/// <param name="additional">Param description...</param>
感谢!