Revision 1 as of 2020-04-17 10:59:59

Clear message

Description

The snippets on this wikipage are written for the .NET Framework v4.0 and higher, but most probably work in older versions. Most will, however not work for .NET Core and .NET Standard.

Snippets

Standard import

   1 public class CustomEventArgs : EventArgs
   2 {
   3     private readonly object item;
   4 
   5     public object Item
   6     {
   7         get { return item; }
   8     }
   9 
  10     public CustomEventArgs(object item)
  11     {
  12         this.item = item;
  13     }
  14 }