What should I include within a C# application in order to make Shell32 work?
Edit:
My application can\'t recognize shell32. What references
Just add a reference to Shell32.dll from the Windows\System32 folder and use it:
Shell32.dll
Windows\System32
Shell32.Shell shell = new Shell32.Shell(); shell.MinimizeAll();