| Name | Package Id | Version | Source |
|---|---|---|---|
| 7Zip | 7zip.7zip | 19.0.0 | winget |
| Altap Salamander | salamander | choco | |
| Alt-Tab Terminator | alt-tab-terminator | choco | |
| AutoHotkey | Lexikos.AutoHotkey | 1.1.33.02 | winget |
| AutoHotkey Store Edition | HaukeGtze.AutoHotkeypoweredbyweatherlights.com | Latest | msstore (via winget) |
| Carnac |
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class EventClass | |
| { | |
| //This is our "signature" for which all event handlers that want to subscribe to our event must match | |
| public delegate void EventFiredHandler(); | |
| //we define our event here, using our "signature" we created above | |
| public event EventFiredHandler EventFired; | |
| //simple method to trigger the event | |
| public void Fire() | |
| { | |
| //here we make sure that we have "subscribers", if we did not check we could generate an exception |