Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What assembly reference do I add to use System.Win32?

Tags:

c#

.net

I'm trying to use objects within System.Win32.SystemEvents, but I can't find the assembly to add to my C# project. There is no obvious dll anywhere...

like image 904
tuseau Avatar asked Jan 06 '11 10:01

tuseau


1 Answers

Don't you mean:

Microsoft.Win32.SystemEvents

You don't need to reference any additional assemblies for that.

Assembly: System (in System.dll). This assembly is already referenced.

like image 160
Tim Lloyd Avatar answered Sep 28 '22 05:09

Tim Lloyd