DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
EventArgs.cpp
Go to the documentation of this file.
1#include "pch.h"
2#include "System/EventArgs.h"
3
4namespace DotNetDupe {
5 namespace System {
6
10
13 static const EventArgs s_emptyArgs;
14 return s_emptyArgs;
15 }
16
17 }
18}
Represents the base class for classes that contain event data.
EventArgs()
Initializes a new instance of the EventArgs class.
Definition EventArgs.cpp:7
static const EventArgs & Empty()
Provides a value to use with events that do not have event data.
Definition EventArgs.cpp:11