forked from 47-studio-org/PostSharp.Samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
55 lines (42 loc) · 1.49 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
namespace PostSharp.Samples.WeakEvent
{
internal class Program
{
private static void Main(string[] args)
{
// The logic of this sample needs to be separated into methods,
// because .NET Framework CLR doesn't collect objects within a scope of a method.
var weakReference = AddCollectedEventClient();
GC.Collect();
Console.WriteLine("Client is alive: {0} (should be False)", weakReference.IsAlive);
// Raise the event when the client is dead.
EventClient.EventHandlerCount = 0;
MyEvent(null, EventArgs.Empty);
Console.WriteLine("EventHandlerCount: {0} (should be 0)", EventClient.EventHandlerCount);
}
private static WeakReference AddCollectedEventClient()
{
var eventClient = new EventClient();
MyEvent += eventClient.EventHandler;
// Forcing GC here to prove that we are not collecting the handler when the client is alive.
GC.Collect();
// Raise the event when the client is alive.
MyEvent(null, EventArgs.Empty);
Console.WriteLine("EventHandlerCount: {0} (should be 1)", EventClient.EventHandlerCount);
// Cause the client to be collected.
return new WeakReference(eventClient);
}
[WeakEvent]
private static event EventHandler MyEvent;
}
internal class EventClient
{
public static int EventHandlerCount;
public void EventHandler(object sender, EventArgs e)
{
Console.WriteLine("Oops!");
EventHandlerCount++;
}
}
}