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
| using System; | |
| using System.Diagnostics; | |
| using System.Runtime.InteropServices; | |
| namespace AppToFront | |
| { | |
| class Program | |
| { | |
| [DllImport("USER32.DLL")] | |
| static extern bool SetWindowPlacement(IntPtr hWnd, [In] ref WINDOWPLACEMENT lpwndpl); |
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
| <?php | |
| function greet() : Closure { | |
| return function($name) { | |
| return 'Hello ' . $name; | |
| }; | |
| } | |
| function call(Closure $func) { | |
| return function($name) use ($func) { |
NewerOlder